/* =========================================================
   REFUND POLICY PAGE
   Transport Services
   ========================================================= */

.refund-policy-page {
    width: 100%;
    overflow: hidden;
    background: #eef9ff;
    color: #0b3556;
}


/* =========================================================
   HERO
   ========================================================= */

.refund-hero {
    padding: 34px 0 42px;
    background: linear-gradient(
        180deg,
        #f5fcff 0%,
        #eaf7fd 100%
    );
    border-bottom: 1px solid rgba(0, 126, 190, 0.12);
}

.refund-hero .container,
.refund-content .container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.refund-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 8px;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;

    color: #145078;
}

.refund-eyebrow i {
    color: #078bd2;
    font-size: 17px;
}

.refund-hero h1 {
    margin: 0 0 12px;

    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;

    color: #082f4f;
}

.refund-intro {
    max-width: 900px;

    margin: 0;

    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;

    color: #285778;
}


/* =========================================================
   CONTENT
   ========================================================= */

.refund-content {
    padding: 48px 0 70px;

    background:
        linear-gradient(
            180deg,
            #eef9ff 0%,
            #e7f6fd 100%
        );
}

.refund-section {
    position: relative;

    max-width: 1120px;

    margin: 0 0 46px;
    padding: 0 0 42px;

    border-bottom: 1px solid rgba(10, 93, 137, 0.13);
}

.refund-section:last-of-type {
    margin-bottom: 42px;
    border-bottom: 0;
}


/* =========================================================
   NUMBER
   ========================================================= */

.refund-number {
    margin-bottom: 9px;

    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;

    color: #17618b;
}


/* =========================================================
   ICON
   ========================================================= */

.refund-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    margin-bottom: 7px;

    color: #07547d;
    font-size: 19px;
}

.refund-icon i {
    display: inline-flex;
}


/* =========================================================
   HEADINGS
   ========================================================= */

.refund-section h2 {
    margin: 0 0 12px;

    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.7px;

    color: #083554;
}

.refund-section p {
    max-width: 1180px;

    margin: 0 0 15px;

    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;

    color: #1e5274;
}

.refund-section p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   NOTICE
   ========================================================= */

.refund-notice {
    max-width: 1120px;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 25px 28px;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid rgba(0, 126, 190, 0.15);
    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(13, 81, 116, 0.08);
}

.refund-notice-icon {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #078bd2;
    color: #ffffff;

    font-size: 19px;
}

.refund-notice h3 {
    margin: 1px 0 7px;

    font-size: 19px;
    line-height: 1.35;
    font-weight: 800;

    color: #082f4f;
}

.refund-notice p {
    max-width: 1000px;

    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #285778;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

    .refund-hero {
        padding: 30px 0 36px;
    }

    .refund-content {
        padding: 40px 0 55px;
    }

    .refund-section {
        margin-bottom: 38px;
        padding-bottom: 34px;
    }

    .refund-section h2 {
        font-size: 30px;
    }

    .refund-section p {
        font-size: 16px;
    }
}


@media (max-width: 767.98px) {

    .refund-hero .container,
    .refund-content .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .refund-hero {
        padding: 25px 0 30px;
    }

    .refund-eyebrow {
        font-size: 14px;
    }

    .refund-hero h1 {
        font-size: 34px;
        letter-spacing: -0.8px;
    }

    .refund-intro {
        font-size: 16px;
        line-height: 1.65;
    }

    .refund-content {
        padding: 34px 0 45px;
    }

    .refund-section {
        margin-bottom: 32px;
        padding-bottom: 30px;
    }

    .refund-number {
        font-size: 14px;
    }

    .refund-section h2 {
        font-size: 27px;
        letter-spacing: -0.4px;
    }

    .refund-section p {
        font-size: 15px;
        line-height: 1.7;
    }

    .refund-notice {
        gap: 13px;
        padding: 20px;
        border-radius: 15px;
    }

    .refund-notice-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .refund-notice h3 {
        font-size: 17px;
    }

    .refund-notice p {
        font-size: 14px;
    }
}


@media (max-width: 480px) {

    .refund-hero h1 {
        font-size: 30px;
    }

    .refund-section h2 {
        font-size: 24px;
    }

    .refund-section p {
        font-size: 14px;
    }

    .refund-notice {
        flex-direction: column;
    }
}