/* ==========================================
   PRIVACY POLICY PAGE
========================================== */

.policy-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
    color: #111;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.8;
}


/* Main Title */

.policy-container h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    color: #000;
    padding-top: 48px;
}


/* Last Updated Text */

.policy-container h1+p {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-accent, #2ecc71);
    margin-bottom: 30px;
}


/* Section Headings */

.policy-container h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 20px;
    padding-left: 14px;
    border-left: 4px solid var(--brand-accent, #2ecc71);
    color: #000;
}

.policy-container h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #111;
}

.policy-container h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #222;
}


/* Paragraphs */

.policy-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #333;
}


/* Lists */

.policy-container ul,
.policy-container ol {
    padding-left: 25px;
    margin-bottom: 25px;
}

.policy-container li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #333;
}


/* Bold Text */

.policy-container strong {
    font-weight: 700;
    color: #000;
}


/* Links */

.policy-container a {
    color: var(--brand-accent, #2ecc71);
    text-decoration: none;
    transition: 0.3s ease;
}

.policy-container a:hover {
    text-decoration: underline;
}


/* Horizontal spacing between major sections */

.policy-container h2:not(:first-of-type) {
    margin-top: 70px;
}


/* Contact section highlight */

.policy-container h2:last-of-type {
    margin-top: 70px;
}


/* Smooth reading width */

.policy-container>* {
    max-width: 950px;
}


/* Mobile Optimization */

@media (max-width: 768px) {
    .policy-container {
        padding: 60px 20px;
    }
    .policy-container h1 {
        font-size: 2rem;
    }
    .policy-container h2 {
        font-size: 1.4rem;
    }
    .policy-container h3 {
        font-size: 1.15rem;
    }
    .policy-container p,
    .policy-container li {
        font-size: 1rem;
    }
}