/* Privacy Policy Styles */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 122, 67, 0.05), rgba(46, 204, 113, 0.05));
    border-bottom: 1px solid rgba(0, 122, 67, 0.1);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.privacy-content {
    color: var(--text-secondary);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-green);
}

.privacy-section h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.privacy-section ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.privacy-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section strong {
    color: var(--text-main);
    font-weight: 600;
}

.privacy-section a {
    color: var(--brand-green);
    text-decoration: underline;
    transition: var(--transition-speed);
}

.privacy-section a:hover {
    color: var(--brand-green-light);
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }
}