/* privacy-styles.css */

body.privacy-policy-page {
    background-color: var(--white);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 30px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.privacy-content h3 {
    color: var(--primary-green);
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--light-grey);
    padding-bottom: 10px;
}

.privacy-content h3:first-of-type {
    margin-top: 0;
}

.privacy-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-content ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.privacy-content ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.privacy-content a {
    color: var(--secondary-green);
    text-decoration: underline;
}

.privacy-content a:hover {
    color: var(--primary-green);
}

.privacy-policy-page .footer-section {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 20px;
    }
}