.privacy-hero {
    margin-top: 15px;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--fp-green) 0%, var(--fp-teal) 100%);
    color: white;
    text-align: center;
    margin-bottom: 40px;
}
.privacy-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.privacy-hero p {
    font-size: 18px;
    opacity: 0.95;
}
.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}
.privacy-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.privacy-section h2 {
    color: var(--fp-green);
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--fp-green);
}
.privacy-section h3 {
    color: #333;
    font-size: 22px;
    margin: 25px 0 15px;
}
.privacy-section p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}
.privacy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}
.privacy-section li {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 10px;
    list-style-type: disc;
}
.privacy-section strong {
    color: #333;
    font-weight: 600;
}
.highlight-box {
    background: #f8f9fa;
    padding: 25px;
    border-left: 4px solid var(--fp-green);
    border-radius: 8px;
    margin: 20px 0;
}
.highlight-box p {
    margin-bottom: 0;
}
.last-updated {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 14px;
}
.contact-box {
    background: linear-gradient(135deg, var(--fp-green) 0%, var(--fp-teal) 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin-top: 40px;
}
.contact-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}
.contact-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: white;
}
.contact-box a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    background: rgba(255,255,255,0.2);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}
.contact-box a:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 32px;
    }
    .privacy-section {
        padding: 25px;
    }
    .privacy-section h2 {
        font-size: 24px;
    }
}