/* Privacy Policy Page Styles */

/* ── Hero ── */
.policy-hero {
    position: relative;
    background: linear-gradient(135deg, #003366, #004B87);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.policy-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.policy-hero h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.policy-last-updated {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

/* ── Content Section ── */
.policy-content-section {
    background: #ffffff;
    padding: 60px 20px 80px;
}

.policy-container {
    max-width: 760px;
    margin: 0 auto;
}

/* ── Typography inside content ── */
.policy-container h2 {
    font-size: 22px;
    font-weight: 700;
    color: #003366;
    margin-top: 48px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.policy-container h2:first-child {
    margin-top: 0;
}

.policy-container h3 {
    font-size: 17px;
    font-weight: 700;
    color: #003366;
    margin-top: 28px;
    margin-bottom: 10px;
}

.policy-container p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.policy-container ul,
.policy-container ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.policy-container li {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 6px;
}

.policy-container a {
    color: #003366;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-container a:hover {
    color: #FF8C00;
}

.policy-container strong {
    font-weight: 700;
    color: #333;
}

/* ── Tablet (≥641px) ── */
@media (min-width: 641px) {
    .policy-hero {
        padding: 80px 20px;
    }

    .policy-hero h1 {
        font-size: 42px;
    }

    .policy-content-section {
        padding: 80px 20px 100px;
    }
}
