/* Privacy Policy Specific Styles */

.privacy-section {
    padding: 60px 0 80px;
    background: var(--surface);
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.last-updated {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-box {
    background: var(--primary);
    color: var(--white);
    border: var(--border);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow);
}

.intro-box h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}

.intro-box p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

.policy-section {
    background: var(--surface);
    border: var(--border);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.policy-section h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-section h2 i {
    color: var(--primary);
    font-size: 24px;
}

.policy-section h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.policy-section ul {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.policy-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.policy-section ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 900;
}

.policy-section ul li strong {
    color: var(--text-primary);
    font-weight: 700;
}

.contact-box {
    background: var(--gray-50);
    border: 3px solid var(--black);
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.contact-box p {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.contact-box a:hover {
    text-decoration: underline;
}

.legal-notice {
    background: var(--warning);
    color: var(--text-primary);
    border-color: var(--black);
}

.legal-notice h2 {
    color: var(--text-primary);
}

.legal-notice h2 i {
    color: var(--text-primary);
}

.legal-notice p,
.legal-notice ul li {
    color: var(--text-primary);
}

.legal-notice ul li::before {
    color: var(--text-primary);
}

.privacy-footer {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: var(--gray-50);
    border: var(--border);
    border-radius: 12px;
}

.privacy-footer p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border: var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-back:hover {
    background: var(--primary-dark);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--black);
}

.btn-back i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 36px;
    }

    .intro-box,
    .policy-section {
        padding: 24px;
    }

    .policy-section h2 {
        font-size: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .policy-section h3 {
        font-size: 18px;
    }

    .privacy-footer {
        padding: 24px;
    }
}
