/* ===== Policy Pages (Cancellation, Privacy, etc.) ===== */

/* ---------- HERO ---------- */
.policy-hero {
    position: relative;
    width: 100%;
    min-height: 416px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #d7e5ef 100%);
}

.policy-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.policy-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
}

.policy-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #00293c;
    line-height: 1.6;
    margin: 0 0 8px;
}

.policy-hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #535965;
    line-height: 1.5;
    margin: 0;
}

/* ---------- CONTENT ---------- */
.policy-content-wrapper {
    /* max-width: 1240px; */
    margin: 0 auto;
    padding: 22px 100px 80px;
}

.policy-content {
    max-width: 690px;
}

/* Section Block */
.policy-section {
    margin-bottom: 32px;
}

/* Section Title Tag */
.policy-section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    height: 36px;
    background: #faf5ea;
    font-size: 24px;
    font-weight: 800;
    color: #00293c;
    line-height: 36px;
    margin-bottom: 32px;
}

/* Section Body */
.policy-section-body {
    font-size: 18px;
    font-weight: 300;
    color: #00293c;
    line-height: 1.5;
}

.policy-section-body p {
    margin: 0 0 8px;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
}

/* ---------- TABLE ---------- */
.policy-table-wrapper {
    max-width: 664px;
    border: 1px solid #e0e2e5;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
}

.policy-table thead th {
    background: #f8faff;
    color: #00293c;
    font-size: 14px;
    font-weight: 600;
    padding: 20px 16px;
    text-align: right;
    border-bottom: 1px solid #e0e2e5;
    height: 64px;
}

.policy-table thead th:not(:last-child) {
    border-left: 1px solid #e0e2e5;
}

.policy-table tbody td {
    color: #00293c;
    font-size: 14px;
    font-weight: 400;
    padding: 20px 16px;
    text-align: right;
    border-bottom: 1px solid #e0e2e5;
    height: 64px;
}

.policy-table tbody td:not(:last-child) {
    border-left: 1px solid #e0e2e5;
}

.policy-table tbody tr:last-child td {
    border-bottom: none;
}

.policy-table tbody tr:nth-child(even) {
    background: #f8faff;
}

/* ---------- NOTES ---------- */
.policy-notes {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-notes-header {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 400;
    color: #6e7686;
}

.policy-notes-header svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.policy-notes-body {
    font-size: 12px;
    font-weight: 400;
    color: #6e7686;
    line-height: 1.5;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .policy-hero {
        min-height: 320px;
    }

    .policy-hero-title {
        font-size: 36px;
    }

    .policy-hero-subtitle {
        font-size: 16px;
    }

    .policy-content-wrapper {
        padding: 22px 48px 60px;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        min-height: 280px;
    }

    .policy-hero-title {
        font-size: 30px;
    }

    .policy-hero-subtitle {
        font-size: 15px;
    }

    .policy-content-wrapper {
        padding: 22px 24px 48px;
    }

    .policy-content {
        max-width: 100%;
    }

    .policy-section-tag {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .policy-section-body {
        font-size: 16px;
    }

    .policy-table-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        min-height: 240px;
    }

    .policy-hero-title {
        font-size: 26px;
    }

    .policy-hero-subtitle {
        font-size: 14px;
    }

    .policy-content-wrapper {
        padding: 16px 16px 40px;
    }

    .policy-section-tag {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .policy-section-body {
        font-size: 15px;
    }
}