/* @import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap'); */

body {
    background: #f0f2f5;
    font-family: 'Gilory', sans-serif;
}


/* Common CSS */
.header_badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fef3ea;
    color: #eb7320;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 10px;
}
.header_text h2{
    font-size: 42px;
    font-weight: 800;
    color: #0f1c2e;
    line-height: 1.1;
    margin: 0;
}
.header_text h2 span {
    color: #F4631E;
}
.header_text p {
    color: #536070;
    font-size: 15px;
    line-height: 22px;
}
.section_box{
    background-color: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    padding: 30px;
    overflow: hidden;
}



/* Banner Sec */
.thumbs_wrap {
    display: flex;
    gap: 10px;
}
.thumbs_wrap .thumb {
    flex: 1;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    border: 1px solid #f0e2d8;
    background-color: #fff;
    box-shadow: 0 10px 18px rgba(0,0,0,.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.thumbs_wrap .thumb:hover {
    border-color: #ff8c42;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.18);
}
.reward_banner_badge {
    display: inline-block;
    background: #ffe5d4;
    color: #e5600a;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.02em;
}
.feature_card {
    border: 1px solid #e8edf2;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.feature_card:hover {
    border-color: #ff8c42;
    box-shadow: 0 4px 18px rgba(255, 140, 66, 0.12);
}
.feature_icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature_text h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #0f1c2e;
}
.feature_text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #8898a8;
}



/* Reward Benefit CSS */
.benefit_card {
    background: #fffaf7;
    border: 1px solid #f1e2d8;
    box-shadow: 0 14px 26px rgba(70, 40, 20, .04);
    border-radius: 20px;
    padding: 28px 24px 22px;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.benefit_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.10);
}

.benefit_icon {
    width: 90px;
    height: auto;
}
.benefit_text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.25;
    position: relative;
}
.benefit_text h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background-color: #F4631E;
}
.benefit_text p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}
.benefit_badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
    margin-top: 4px;
}
.benefit_badge i{
    font-size: 0.9rem;
}
.badge-orange {
    background: #FFF3EC;
    color: #F4631E;
}
.badge-blue {
    background: #EAF4FD;
    color: #3B9EEB;
}
.badge-green {
    background: #E8FBF3;
    color: #2DBE7C;
}
.badge-purple {
    background: #F3EEFF;
    color: #9B6FE8;
}
.badge-yellow {
    background: #FFF8E7;
    color: #F5A623;
}
.badge-pink {
    background: #FFF0F5;
    color: #F06292;
}
.badge_icon {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
    opacity: 0.6;
}



/* Program Sec CSS */
.program_sec .header_text::after{
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 20px;
    background-image: url(../img/heading_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.program_box{
    background-image: linear-gradient(to right bottom, #fefcfb, #fef4ea);
    border: 2px solid #fde5db;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.07);
    position: relative;
}
.program_box.with_badge{
    padding-bottom: 30px;
}
.program_count{
    width: 60px;
    height: 65px;
}
.program_text h4{
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
}
.program_text p{
    font-size: 14px;
    font-weight: 500;
    color: #555;
    line-height: 1.65;
}
.program_text{
    flex: 1;
}
.program_img_wrap{
    width: 50%;
}
.program_badge{
    position: absolute;
    bottom: 10px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}
.program_badge.badge-green{
    background-color: #e6f5ca;
    color: #57b712;
}
.program_badge.badge-purple{
    background-color: #eaddf6;
    color: #7937cd;
}



/* Credit Sec CSS */
.credit_sec::after{
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: #fefbf9;
    filter: drop-shadow(0 14px 125px rgba(226, 121, 0, 0.14));
    border-radius: 100%;
    z-index: -1;
}
.credit_sec .header_text{
    background-image: url(../img/credit_bg.png);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.credit_box{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #fde5db;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.07);
}
.credit_text{
    width: 50%;
}
.credit_count{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: #fd7918;
    border: 4px solid #fea554;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    border-radius: 100%;
}
.credit_text h4{
    font-size: 20px;
    font-weight: 800;
    line-height: 25px;
    position: relative;
}
.credit_text h4::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #fd6a0b;
}
.credit_text p{
    font-size: 14px;
    font-weight: 500;
    color: #555;
    line-height: 1.65;
}



/* Reminder Sec CSS */
.reminder_sec .header_text{
    background-image: url(../img/credit_bg.png);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.reminder_sec .header_text::after{
    content: '';
    position: absolute;
    bottom: 10px;
    right: 90px;
    width: 150px;
    height: 70px;
    background-image: url(../img/reminder_heading_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.reminder_sec .header_text h2 span{
    position: relative;
}
.reminder_sec .header_text h2 span::after{
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 38px;
    height: 10px;
    background-image: url(../img/heading_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.reminder_box{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #fde5db;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.07);
}
.reminder_text{
    width: 50%;
}
.reminder_icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    filter: drop-shadow(0 5px 4px rgba(226, 121, 0, 0.14));
}
.reminder_text h4{
    font-size: 20px;
    font-weight: 800;
    line-height: 25px;
    position: relative;
}
.reminder_text h4::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #fd6a0b;
}
.reminder_text p{
    font-size: 14px;
    font-weight: 500;
    color: #555;
    line-height: 1.65;
}



/* Cancel Sec CSS */
.cancel_sec{
    background-color: #fcfbf9;
}
.cancel_badge{
    background-color: #fefaf8;
    border: 2px solid #f5e7e1;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    color: #00091b;
}
.cancel_badge i{
    font-size: 16px;
    color: #f56f22;
}
.header_top_left .cancel_badge{
    background-color: #fef4ed;
    filter: drop-shadow(0 1px 2px rgba(226, 121, 0, 0.14));
    color: #f56f22;
    text-transform: uppercase;
    font-size: 12px;
}
.cancel_sec .header_text h2::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #f85f0b;
}
.cancel_sec .header_text p span{
    color: #f85f0b;
}
.cancel_form_wrap{
    background-color: #fff;
    border: 2px solid #fde5db;
    filter: drop-shadow(0 5px 4px rgba(226, 121, 0, 0.14));
    border-radius: 20px;
}
.cancel_email_icon{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #ef6d23;
    background-color: #fef3ed;
    border-radius: 100%;
}
.cancel_label span{
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    flex: 1;
}
.cancel_form input{
    height: 55px;
    border: 2px solid #e5e4e4;
    border-radius: 15px;
}
.cancel_btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 15px;
    background-color: #f26d24;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    border: none;
    padding: 12px 16px;
    transition: all 0.4s ease-in-out;
}
.cancel_btn:hover{
    background-color: var(--navy);
    color: #fff;
}
.cancel_btn i{
    font-size: 30px;
}
.cancel_btn p span{
    font-size: 14px;
    font-weight: 400;
}
.cancel_sec h5{
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.cancel_sec h5 i{
    color: #f56f21;
}
.cancel_help{
    background-color: #fef6f2;
    border: 2px solid #fde5db;
    filter: drop-shadow(0 5px 4px rgba(226, 121, 0, 0.14));
    border-radius: 20px;
}
.cancel_help_icon{
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}
.cancel_help_right{
    width: 100%;
}
.cancel_help_right h4{
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.cancel_help_right p{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.contact_icon{
    width: 50px;
    height: 50px;
    background-color: #fee2d1;
    color: #f16c22;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 20px;
    line-height: 1;
}
.contact_text h5{
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}
.contact_text p{
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #f86517;
    text-transform: uppercase;
}
.cancel_contact_divider{
    height: 50px;
    width: 2px;
    background-color: #fbe1d4;
    align-self: stretch;
}



/* FAQ Sec CSS */
.faq_header p img{
    width: 50px;
    height: 20px;
}
.faq_item {
    border: 2px solid #fae9df !important;
    filter: drop-shadow(0 1px 2px rgba(226, 121, 0, 0.14));
    border-radius: 15px !important;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq_item:last-child {
    border-bottom: none;
}
.faq_question_btn {
    width: 100%;
    background: none;
    border: none;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s;
}
.faq_question_btn:focus{
    box-shadow: none;
}
.faq_question_btn:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
}
.faq_question_btn::after{
    content: "+";
    font-size: 20px;
    color: var(--orange);
    font-weight: 700;
    line-height: 1;
    background-image: none;
    background-color: #fef2e7;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 100%;
}
.faq_question_btn:not(.collapsed)::after{
    content: "-";
    transform: none;
    background-image: none;
}
.faq_icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faq_icon i {
    font-size: 22px;
    color: var(--orange);
}
.faq_answer {
    font-size: 16px;
    color: var(--text_muted);
    line-height: 1.7;
    padding-top: 0;
}
.faq_answer_wrap {
    background-color: #fef5ee;
    border: 2px solid #fae9df !important;
    border-radius: 15px;
}
.faq_answer_icon{
    width: 100px;
    height: auto;
    flex-shrink: 0;
}




/* Responsive CSS */
@media screen and (max-width: 991px){
    .section_box{
        padding: 18px;
        border-radius: 18px;
    }
    .header_text h2{
        font-size: 36px;
    }
    .header_text p{
        font-size: 14px;
    }

    .feature_card{
        padding: 15px;
        gap: 12px;
    }
    .benefit_card{
        padding: 15px;
        border-radius: 15px;
    }
    .benefit_icon {
        width: 75px;
    }
    .benefit_text h4{
        font-size: 1.15rem;
    }
    .benefit_text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .benefit_badge{
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    .benefit_badge i {
        font-size: 0.8rem;
    }

    .program_box {
        padding: 15px;
        border-radius: 15px;
    }
    .program_count {
        width: 50px;
        height: 55px;
    }
    .program_text h4{
        font-size: 18px;
    }
    .program_badge{
        font-size: 0.7rem;
    }

    .credit_box{
        padding: 15px;
        border-radius: 15px;
        background-position: center left;
    }
    .credit_text {
        width: 60%;
    }
    .credit_count {
        width: 38px;
        height: 38px;
        border: 2px solid #fea554;
        font-size: 20px;
    }
    .credit_text h4 {
        font-size: 18px;
        line-height: 22px;
    }

    .reminder_sec .header_text::after{
        right: 20px;
    }
    .reminder_box{
        padding: 15px;
        border-radius: 15px;
        background-position: center left;
    }
    .reminder_text {
        width: 70%;
    }
    .reminder_icon {
        width: 55px;
        height: 55px;
    }
    .reminder_text h4 {
        font-size: 18px;
        line-height: 22px;
    }

    .cancel_badge {
        padding: 8px 10px;
        border-radius: 10px;
        font-size: 12px;
    }
    .header_top_left .cancel_badge{
        font-size: 10px;
    }
    .cancel_form_wrap{
        border-radius: 15px;
    }
    .cancel_email_icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .cancel_label span{
        font-size: 16px;
    }
    .cancel_form input {
        height: 50px;
        border-radius: 10px;
    }
    .cancel_btn {
        gap: 12px;
        border-radius: 10px;
        font-size: 18px;
        line-height: 22px;
    }
    .cancel_btn i {
        font-size: 26px;
    }
    .cancel_btn p span{
        font-size: 13px;
    }
    .cancel_sec h5{
        font-size: 15px;
    }
    .cancel_help{
        border-radius: 15px;
    }
    .cancel_help_icon {
        width: 100px;
        height: 100px;
    }
    .cancel_help_right h4{
        font-size: 18px
    }
    .contact_icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        font-size: 16px;
    }
    .contact_text h5{
        font-size: 14px;
    }
    .contact_text p{
        font-size: 13px;
    }

    .faq_question_btn{
        padding: 8px 15px;
        font-size: 16px;
    }
    .faq_icon {
        width: 35px;
        height: 35px;
    }
    .faq_question_btn::after {
        font-size: 16px;
        width: 25px;
        height: 25px;
    }
    .faq_answer_wrap {
        border-radius: 10px;
    }
    .faq_answer_icon{
        width: 70px;
    }
    .faq_answer_wrap p{
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 767px){
    .section_box{
        padding: 15px;
        border-radius: 15px;
    }
    .header_text h2{
        font-size: 32px;
    }

    .feature_card{
        padding: 12px;
        border-radius: 10px;
    }
    .feature_icon {
        width: 35px;
        height: 35px;
    }
    .feature_text h4 {
        font-size: 15px;
    }

    .reminder_sec .header_text::after {
        bottom: 20px;
        right: 0;
        width: 100px;
        height: 80px;
    }

    .faq_question_btn {
        font-size: 15px;
    }
}