/* Privacy Policy Page Styles */

.privacy-hero {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 50%, rgba(249, 115, 22, 0.05) 100%);
    text-align: center;
}

.privacy-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.privacy-hero p {
    color: var(--text-gray);
    font-size: 16px;
}

.privacy-content {
    padding: 60px 0 100px;
    background: var(--white);
}

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

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-left: 4px solid var(--primary-purple);
    padding-left: 15px;
}

.policy-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.policy-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 15px 0 15px 20px;
    color: var(--text-gray);
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.policy-section li strong {
    color: var(--text-dark);
}

.policy-section.consent {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 50%, rgba(249, 115, 22, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    border-bottom: none;
}

.policy-section.consent h2 {
    border-left-color: var(--primary-pink);
}

.contact-info {
    background: var(--off-white);
    padding: 20px 25px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.contact-info i {
    color: var(--primary-purple);
    width: 20px;
}

.nav-links a.active {
    color: var(--primary-purple);
    font-weight: 600;
}

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

    .privacy-hero h1 {
        font-size: 32px;
    }

    .policy-section h2 {
        font-size: 20px;
    }

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

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