/* ============================================
   POLICY PAGES STYLES - FITQURO
   ============================================ */

/* Policy Section */
.policy-section {
    min-height: 100vh;
    padding: 140px 0 80px;
    background: var(--bg-dark);
}

.policy-header {
    text-align: center;
    margin-bottom: 48px;
}

.policy-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.policy-date {
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

/* Policy Card */
.policy-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.policy-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--bg-card-hover);
}

.policy-card h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.policy-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.policy-card li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.policy-card li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-light);
    font-weight: bold;
}

.policy-card .link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.policy-card .link:hover {
    text-decoration: underline;
    color: var(--primary);
}

/* Policy Content Language Toggle */
.policy-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.policy-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Step Box for Instructions */
.step-box {
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 16px 0;
}

.step-box strong {
    color: var(--primary-light);
}

/* Footer Legal Links */
.footer-legal {
    margin-top: 12px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* Responsive */
@media (max-width: 768px) {
    .policy-section {
        padding: 120px 16px 60px;
    }
    
    .policy-card {
        padding: 24px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
}
