/* Privacy Policy Specific Styles */

.privacy-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.privacy-hero .last-updated {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.privacy-content {
    padding: 80px 0;
    background-color: var(--primary);
}

.privacy-content .container {
    max-width: 900px;
}

.content-wrapper {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 60px;
    box-shadow: var(--shadow-xl);
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.policy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 28px;
    margin-bottom: 16px;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-200);
    margin-bottom: 16px;
}

.policy-section ul {
    margin: 16px 0 16px 24px;
    padding-left: 20px;
}

.policy-section ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-200);
    margin-bottom: 12px;
    position: relative;
}

.policy-section ul li::marker {
    color: var(--accent);
}

.policy-section a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.policy-section a:hover {
    color: var(--light);
    text-decoration: underline;
}

.policy-section strong {
    color: var(--light);
    font-weight: 600;
}

.contact-info {
    background-color: rgba(0, 212, 255, 0.1);
    border-left: 4px solid var(--accent);
    padding: 24px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 40px;
    }

    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-content {
        padding: 40px 0;
    }

    .content-wrapper {
        padding: 32px 24px;
        border-radius: 12px;
    }

    .policy-section {
        margin-bottom: 36px;
    }

    .policy-section h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .policy-section h3 {
        font-size: 1.125rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .policy-section ul {
        margin-left: 16px;
        padding-left: 12px;
    }

    .contact-info {
        padding: 16px;
    }
}

@media screen and (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 1.75rem;
    }

    .content-wrapper {
        padding: 24px 16px;
    }

    .policy-section h2 {
        font-size: 1.35rem;
    }
}
