/* ── Base ── */

html {
    font-size: 62.5%;
}

/* 1rem = 10px */

body {
    font-size: 1.6rem;
    background-color: #faf7f4;
    color: #1a1a1a;
}

/* ── Design tokens ── */
:root {
    --orange: #fe5901;
    --orange-dark: #d96a10;
    --orange-light: #fff3e8;
    --orange-mid: #fde8d2;
    --dark: #1a1a1a;
    --muted: #6b7280;
    --border: #e8e8e8;
    --radius-lg: 2rem;
    --radius-md: 1.4rem;
    --radius-sm: 1rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    SECTION 1 – policy_topbar  (Image 1)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.policy_topbar {
    padding: 4rem 0;
}
.policy_topbar .topbar_inner {
    background-color: #fefbf9;
    border: 1px solid #ebc4ac;
    border-radius: 4.5rem;
    padding: 2.4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    box-shadow: 0 6px 20px rgba(226, 196, 171, 0.6);
}
.topbar_item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex: 1;
    padding: 0 3rem;
}
.topbar_item+.topbar_item {
    border-left: 1px solid #e8e8e8;
}
.topbar_icon_wrap {
    width: 8rem;
    height: 8rem;
    flex-shrink: 0;
}
.topbar_text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: .3rem;
}
.topbar_text p {
    font-size: 1.5rem;
    color: #6b7280;
    margin: 0;
}
.topbar_item:first-child{
    flex: 0;
}
.topbar_item:first-child i{
    font-size: 6rem;
    background: linear-gradient(to right, #de6a2e, #dca375);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    SECTION 2 – policy_banner   (Image 7)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.policy_banner {
    padding: 3rem 0;
}
.policy_banner .banner_inner {
    background-color: #fff;
    border-radius: 2rem;
    padding: 5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.banner_badge {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    background-color: #fef8f2;
    border: 1px solid #fae3d1;
    border-radius: 10rem;
    padding: .8rem 1.6rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fe5901;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 2rem;
}
.banner_left h1 {
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 2rem;
}
.banner_left h1 span {
    color: #fe5901;
    display: block;
}
.banner_left p {
    font-size: 1.6rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.shipping_options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.ship_card {
    background-color: #fefefe;
    border: 2px solid #e9e8e9;
    border-radius: 1.5rem;
    padding: 1.8rem;
    flex: 1;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
.ship_card .ship_icon {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background-color: #feeedf;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
}
.ship_card h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: .5rem;
}
.ship_card .price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fe5901;
    margin-bottom: 1rem;
    width: fit-content;
    border-bottom: 1px solid #e9e8e9;
}
.ship_card p {
    font-size: 1.4rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}
.btn_track {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: #fe5901;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.4rem 2.8rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: background .2s;
}
.btn_track:hover {
    background-color: #020f29;
    color: #fff;
}

.banner_right {
    background-color: #fef4ec;
    border: 2px solid #f9e8d7;
    border-radius: 2rem;
    padding: 5rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}
.banner_img_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust_pills {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: space-evenly;
    border-radius: 1.5rem;
    padding: 2rem;
    width: 100%;
    background-color: #fefefe;
}
.trust_pill {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}
.trust_icon{
    width: 5rem;
    height: 5rem;
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    SECTION 3 – policy_benefit  (Image 6)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.policy_benefit {
    padding: 3rem 0;
}
.benefit_card {
    background-color: #fff;
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.06);
}
.benefit_card .benefit_icon {
    width: 10rem;
    height: 10rem;
    margin: 0 auto 2rem;
}
.benefit_card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}
.benefit_card .sub {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fe5901;
    text-transform: uppercase;
    letter-spacing: .1rem;
    margin-bottom: 1.8rem;
}
.benefit_card .divider {
    width: 3rem;
    height: .25rem;
    background-color: #fe5901;
    margin: 0 auto 1.8rem;
}
.benefit_card p {
    font-size: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    SECTION 4 – overview_sec    (Image 5)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.overview_sec {
    padding: 3rem 0;
}
.overview_wrap{
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.overview_head {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}
.overview_head .overview_icon {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background-color: #fef3e9;
    color: #fe5901;
    font-size: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.overview_head h2 {
    font-size: 5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
}
.overview_sub {
    font-size: 1.6rem;
    color: #6b7280;
    margin-bottom: 0;
}
.overview_divider {
    width: 5rem;
    height: .3rem;
    background-color: #fe5901;
    margin: 1.5rem 0 2rem;
}
.step_card {
    border: 2px solid #f4e3d6;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 3rem 3rem;
    border-radius: 2rem;
    position: relative;
}
.step_num {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #fe5901;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -2rem;
}
.step_icon_wrap {
    width: 10rem;
    height: 10rem;
    margin-bottom: 2rem;
}
.step_card h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}
.step_card .step_divider {
    width: 3rem;
    height: .2rem;
    background-color: #fe5901;
    margin: 0 auto 1.5rem;
}
.step_card p {
    font-size: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    SECTION 5 – tracking_sec    (Image 4)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tracking_sec {
    padding: 3rem 0;
}
.tracking_left {
    background-image: linear-gradient(to bottom, #f98426, #f96f0c);
    padding: 3rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.tracking_left_icon {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem;
}
.tracking_left h2 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}
.tracking_left .track_divider {
    width: 6.5rem;
    height: .3rem;
    background-color: #fff;
}
.tracking_left p {
    font-size: 1.6rem;
    line-height: 1.7;
    max-width: 450px;
    margin: 0;
}
.tracking_img_wrap {
    background-color: rgba(255, 255, 255, .12);
    border: 2px solid #fec48b;
    border-radius: 1.6rem;
    overflow: hidden;
}
.tracking_right {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background-color: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.track_info_item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #f1e8e2;
}
.track_info_item:last-of-type {
    border-bottom: none;
}
.track_info_icon {
    width: 9rem;
    height: 9rem;
    flex-shrink: 0;
}
.track_info_text h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .6rem;
}
.track_info_text p {
    font-size: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 350px;
    margin: 0;
}
.track_support {
    display: flex;
    align-items: center;
    background-color: #fef7f1;
    border: 1px solid #fdf5f1;
    border-radius: 1rem;
    padding: 1.5rem;
    gap: 1.6rem;
}
.track_support_text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.track_support_text>*{
    flex: 1;
    padding: 0 1.5rem;
}
.track_support_text::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 50px;
    background-color: #f6eae2;
}
.track_support_text strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
}
.track_support_text span {
    font-size: 1.4rem;
    color: #6b7280;
}
.track_support_icon {
    width: 5.5rem;
    height: 5.5rem;
    flex-shrink: 0;
}
.track_arrow {
    font-size: 2.5rem;
    color: #fe5901;
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    SECTION 6 – policy_help     (Image 3)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.policy_help {
    padding: 3rem 0;
}
.help_inner {
    background-color: #fe5901;
    border-radius: 2rem;
}
.help_left {
    color: #fff;
    display: flex;
    flex-direction: column;
}
.help_title_row {
    display: flex;
}
.help_title_icon {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background-color: #fdebda;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    flex-shrink: 0;
}
.help_left h2 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.help_divider {
    width: 6rem;
    height: .4rem;
    background-color: #f9751d;
    border-radius: 10rem;
    position: relative;
    overflow: hidden;
}
.help_divider::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 0.4rem;
    background-color: #fff;
    border-radius: 10rem;
}
.help_left p {
    font-size: 1.6rem;
    line-height: 1.6;
    max-width: 500px;
}
.help_features {
    display: flex;
    border-top: 1px solid #f9751d;
}
.help_feat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .8rem;
    padding: 0 1.5rem;
    border-right: 1px solid #f9751d;
}
.help_feat:last-child{
    border-right: none;
}
.help_feat_icon {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background-image: linear-gradient(to left, #f56a16, #fa851b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
}
.help_feat strong {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}
.help_feat span {
    font-size: 1.2rem;
    opacity: .85;
}
.help_contacts {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
}
.help_contact_btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    color: #fe5901;
    border: 1px solid #fff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.5rem 3rem;
    border-radius: 1.5rem;
    text-decoration: none;
    transition: opacity .2s;
}
.help_contact_btn.call{
    border-color: #fec38e;
    background-color: transparent;
    color: #fff;
}
.help_contact_btn:hover {
    background-color: #020f29;
    color: #fff;
    border-color: #020f29;
}
.help_contact_btn i {
    font-size: 2.5rem;
}
.help_verified {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: 1.5rem;
}
.help_verified img {
    width: 2rem;
    height: 2rem;
}
.help_img_box {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, .1);
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    SECTION 7 – policy_faq_sec  (Image 2)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.policy_faq_sec {
    padding: 3rem 0;
}
.policy_faq_wrap {
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.faq_head {
    display: flex;
    gap: 1.6rem;
    margin-bottom: 2rem;
}
.faq_head_icon {
    width: 8rem;
    height: 8rem;
    flex-shrink: 0;
}
.faq_head h2 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
}
.faq_sub {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 0;
}


/* Override Bootstrap accordion defaults to match design */
.accordion_wrap .accordion {
    --bs-accordion-border-color: #e8e8e8;
    --bs-accordion-border-radius: 1.4rem;
    --bs-accordion-inner-border-radius: 1.4rem;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-bg: #fff;
    --bs-accordion-active-bg: #fff;
    --bs-accordion-active-color: #1a1a1a;
    --bs-accordion-btn-active-icon: none;
    --bs-accordion-btn-icon: none;
}
.accordion_wrap .accordion-item {
    border: 1px solid #e8e8e8;
    border-radius: 1.4rem !important;
    overflow: hidden;
    transition: border-color .2s;
}
.accordion_wrap .accordion-item:hover {
    border-color: #fe5901;
}
.accordion_wrap .accordion-button {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #fff !important;
    box-shadow: none !important;
    color: #1a1a1a !important;
}
.accordion_wrap .accordion-button:not(.collapsed){
    padding-bottom: 0;
}
.accordion_wrap .accordion-button::after {
    display: none;
}
.faq_item_icon {
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 50%;
    background-color: #fef6f0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faq_btn_text {
    flex: 1;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: left;
}
.faq_chevron {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #fe5901;
    transition: transform .25s ease;
}
.accordion-button.collapsed .faq_chevron {
    transform: rotate(-90deg);
}
.accordion_wrap .accordion-body,
.faq_full_wrap .accordion-body {
    padding: 0 1.5rem 2.5rem 8.2rem;
    font-size: 1.5rem;
    color: #6b7280;
    line-height: 1.6;
}
.faq_footer {
    background-color: #fef7f1;
    border-radius: 1.5rem;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
}
.faq_footer::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 40px;
    background-color: #f9e6da;
}
.faq_footer_text {
    font-size: 1.7rem;
    font-weight: 700;
}
.faq_footer_text i{
    font-size: 4rem;
    color: #fe5901;
}
.faq_footer_text span {
    font-weight: 400;
}
.faq_footer_contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fe5901;
    text-decoration: none;
    border-right: 1px solid #f9e6da;
}
.faq_footer_contact:last-child{
    border-right: none;
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    SECTION 8 – policy_feature  (Image 8)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.policy_feature {
    padding: 3rem 0 5rem;
    background-color: #fdf6f0;
}
.feature_bar {
    border: 1px solid #f4e3d6;
    background-color: #fff;
    border-radius: 2rem;
    padding: 2.4rem 3.6rem;
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.feature_bar_divider {
    width: 1px;
    height: 5rem;
    background-color: #feb384;
    margin-right: 2.4rem;
}
.feature_item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex: 1;
    padding: 0 2rem;
}
.feature_item+.feature_item {
    border-left: 1px solid #e8e8e8;
}
.feature_item_icon {
    width: 7rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature_item h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: .3rem;
}
.feature_item p {
    font-size: 1.4rem;
    color: #6b7280;
    margin: 0;
}



/* ── Responsive ── */
@media (max-width: 1200px) {
    html {
        font-size: 60%;
    }
    .policy_topbar .topbar_inner{
        padding: 2rem 0;
    }
    .topbar_item{
        padding: 0 1.5rem;
    }
    .faq_footer::after{
        display: none;
    }
    .faq_footer_right {
        width: 100%;
    }
    .faq_footer_contact{
        border-right: none;
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .topbar_item:first-child {
        display: none;
    }
    .topbar_item:nth-child(2) {
        border-top: none;
        border-left: none;
    }
    .faq_full_wrap .accordion-item {
        border-radius: 1.4rem !important;
    }
    .steps_row {
        flex-wrap: wrap;
    }
    .steps_row::before {
        display: none;
    }
    .step_card {
        flex: 1 1 40%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 60%;
    }
    .topbar_item {
        border-left: none !important;
        border-top: 1px solid #e8e8e8;
        padding: 2rem 0;
        width: 100%;
    }
    .policy_topbar .topbar_inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }
    .banner_left h1 {
        font-size: 5rem;
    }
    .feature_bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .feature_item {
        border-left: none !important;
        border-top: 1px solid #e8e8e8;
        width: 100%;
        padding: 2rem 0;
    }
    .feature_item:first-of-type {
        border-top: none;
    }
    .feature_bar_divider {
        display: none;
    }
    .help_features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%;
    }
    .shipping_options {
        flex-direction: column;
    }
    .help_contacts {
        flex-direction: column;
    }
    .step_card {
        flex: 1 1 100%;
    }
}