/* Privacy Page Styles */
.privacy-section {
    padding: 8rem 2rem 4rem;
    background: var(--bg-light);
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 1rem;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.privacy-block {
    margin-bottom: 3rem;
}

.privacy-block:last-child {
    margin-bottom: 0;
}

.privacy-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.privacy-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-block p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.privacy-block ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-block li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.privacy-block li strong {
    color: var(--text-dark);
}

.contact-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 6rem 1rem 2rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-content {
        padding: 2rem 1.5rem;
    }

    .privacy-block h2 {
        font-size: 1.5rem;
    }
}
