/* privacy-policy.css */

.privacy-page {
    background: #ffffff;
    color: #1f2933;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.privacy-hero {
    padding: 140px 0 70px;
    background:
        linear-gradient(
            180deg,
            rgba(243, 248, 244, 1) 0%,
            rgba(255,255,255,1) 100%
        );
    text-align: center;
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: #4d7c57;
    margin-bottom: 18px;
}

.privacy-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 20px;
    color: #102418;
}

.hero-subtext {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #52606d;
}

.privacy-content {
    padding: 70px 0 100px;
}

.privacy-container {
    max-width: 820px;
}

.effective-date {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 32px;
}

.privacy-content h2 {
    margin-top: 48px;
    margin-bottom: 16px;
    font-size: 1.55rem;
    line-height: 1.2;
    color: #102418;
}

.privacy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #374151;
    font-size: 1.04rem;
}

.privacy-content ul {
    margin: 0 0 24px 22px;
    padding: 0;
}

.privacy-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #374151;
}

.contact-card {
    margin-top: 24px;
    padding: 28px;
    border-radius: 18px;
    background: #f5f8f5;
    border: 1px solid #dde7de;
    line-height: 1.8;
}

.contact-card a {
    color: #2f6f44;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    .privacy-hero {
        padding: 120px 0 55px;
    }

    .privacy-content {
        padding: 55px 0 80px;
    }

    .privacy-content h2 {
        font-size: 1.35rem;
    }

    .hero-subtext,
    .privacy-content p,
    .privacy-content li {
        font-size: 1rem;
    }
}