 /* Reset and base styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
}

/* Header styles */
.hdr_x92 {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav_c44 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_j22 {
    height: 75px;
}

.btn_grp_p11 {
    display: flex;
    gap: 1rem;
}

.btn_m55 {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    background: white;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn_m55:hover {
    background: #f3f4f6;
}

/* Hero section styles */
.hero_k77 {
    margin-top: 64px;
    background: url(../images/bg-full.png) no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    color: white;
    padding: 6rem 1rem;
}

.ov{
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container_f33 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .container_f33 {
        grid-template-columns: 1fr 1fr;
    }
}

.content_b88 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.icon_box_v66 {
    background: rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    width: fit-content;
}

.stats_w44 {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.divider_l11 {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.2);
}

/* Form styles */
.form_card_y99 {
    background: white;
    padding: 2rem;
    max-width: 400px;
    margin: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form_group_h22 {
    margin-bottom: 1rem;
}

.label_d55 {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
}

.input_r77 {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.submit_btn_q88 {
    width: 100%;
    padding: 0.75rem;
    background: #ffbb00;
    color: white;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 0.2s;
}

.submit_btn_q88:hover {
    background: #ffbb00;
}

/* Content section styles */
.content_section_t33 {
    padding: 4rem 1rem;
    background: #f9fafb;
}

.cards_grid_m66 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}


/* reward section  */
.cnt_w77 {
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: 300px 1fr;
}
.nav_k99 {
    position: sticky;
    top: 2rem;
    background: #ffbb00;
    padding: 15px;
    
}

.nav_btn_m33 {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav_btn_m33:hover {
    border: 3px black solid ;
}

.nav_btn_m33.active_p11 {
    background: black;
    border: 3px #fff dotted;
    color: white;
}

.content_j55 {
    background: white;
    padding: 2rem;
    min-height: 500px;
    overflow: hidden;
}

.section_f22 {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section_f22.active_v33 {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease forwards;
}

.title_v88 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: black;
    font-weight: bold;
}

.text_b44 {
    color: #666;
    line-height: 1.6;
}

.faq_item_h77 {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.faq_question_c33 {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.faq_answer_y66 {
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* reward section */




@media (min-width: 768px) {
    .cards_grid_m66 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card_g44 {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card_title_c33 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.faq_item_k55 {
    margin-bottom: 1rem;
}

.faq_question_j77 {
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.faq_answer_p99 {
    display: none;
    color: #6b7280;
}

.faq_item_k55.active .faq_answer_p99 {
    display: block;
}


 /* Stats Grid Section */
 .stats_x77 {
    max-width: 1200px;
    margin: 50px 4rem;
}

.stats_grid_m44 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.stat_card_p88 {
    background: #fffbef;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.2s ease;
}

.stat_card_p88:hover {
    transform: translateY(-5px);
}

.stat_icon_j33 {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.computer_bg_k22 { background: #e0f2fe; }
.shield_bg_v55 { background: #e0e7ff; }
.arrow_bg_h66 { background: #fef3c7; }
.doc_bg_n77 { background: #dcfce7; }

.stat_title_c99 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.stat_desc_w11 {
    color: #64748b;
    font-size: 0.875rem;
}

/* Benefits Section */
.benefits_y66 {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits_title_f44 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #0f172a;
}

.benefits_title_f44 span {
    color: #ffbb00;
}

.benefits_grid_l33 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.benefit_card_b77 {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit_card_b77:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit_title_m55 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.benefit_title_m55 h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
}

.benefit_title_m55 span {
    color: #ffbb00;
    font-weight: 600;
}

.benefit_desc_q99 {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}


.container_x44 {
    max-width: 1200px;
    margin: 50px auto;
    
}

.title_m77 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.states_grid_p88 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.state_card_k55 {
    background: white;
    border-radius: 1rem;
    padding: 0.5rem 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.state_card_k55::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffbb00;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.state_card_k55:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.state_card_k55:hover::before {
    transform: scaleX(1);
}

.icon_wrapper_j22 {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.state_card_k55:hover .icon_wrapper_j22 {
    transform: scale(1.1);
    background: #fff8e4;
}

.state_icon_v99 {
    width: 50px;
    height: 50px;
    color: #ffbb00;
}

.state_name_b33 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.state_desc_q11 {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.badge_h66 {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #fff8e4;
    color: #dc2626;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 1rem;
}


 .rom {
    max-width: 100%;
    margin: 50px auto;
    
}

.consultation_grid_m44 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: url(../images/bg-thr.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 3rem;
    position: relative;
}

/* Left Section Styles */
.info_section_k99 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main_title_v33 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: #ffbb00;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.features_list_p11 {
    list-style: none;
    margin-top: 2rem;
}

.feature_item_b88 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #fff;
}

.check_icon_j22 {
    width: 24px;
    height: 24px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check_icon_j22::before {
    content: '✓';
    color: #16a34a;
    font-weight: bold;
}

/* Form Section Styles */
.form_section_h55 {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
}

.form_title_q66 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.input_group_w33 {
    margin-bottom: 1.5rem;
}

.input_field_l77 {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.input_field_l77:focus {
    outline: none;
    border-color: #ffbb00;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.input_field_l77::placeholder {
    color: #94a3b8;
}

.submit_btn_y99 {
    width: 100%;
    padding: 0.875rem;
    background: #ffbb00;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit_btn_y99:hover {
    background: #ffbb00;
    transform: translateY(-1px);
}




      /* Container styles */
      .xk92_wrapperr {
        padding: 48px 16px;
        background-color: #f9fafb;
    }

    .mn45_container {
        max-width: 1280px;
        margin: 0 auto;
    }

    /* Header styles */
    .ht67_header {
        text-align: center;
        margin-bottom: 48px;
    }

    .qw23_title {
        font-size: 2rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .jk89_description {
        color: #4b5563;
        max-width: 768px;
        margin: 0 auto;
        
    }

    .cards-container{
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 10px ;
        flex-wrap: wrap;
        padding: 10px;
    }
.rojis-box{
flex: 23%;
padding: 5px;
text-align: center;
background-color: #fff;
border-radius: 10px;
box-shadow: 2px 0px 10px lightgray;
}
.rojis-box img{
width: 200px;
height: 200px;
}
.rojis-box h5{
font-size:1rem;
margin-bottom: 10px;
}

.container_x77 {
    max-width: 1200px;
    margin: 50px auto;
}

.header_m44 {
    text-align: center;
    margin-bottom: 3rem;
}

.title_v33 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subtitle_p11 {
    
    color: #64748b;
}

.programs_grid_k99 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.program_card_b88 {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.program_card_b88:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.program_image_h55 {
    width: 100%;
    height: 300px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program_image_h55 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.program_content_w22 {
    padding: 2rem;
    text-align: center;
}

.program_title_l66 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program_desc_j33 {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.learn_more_btn_q77 {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.learn_more_btn_q77:hover {
    background: #333;
    transform: translateY(-2px);
}




.zx92_section {
    padding: 4rem 1rem;
    background: #f9fafb;
    min-height: 100vh;
}

.wy45_container {
    max-width: 1400px;
    margin: 0 auto;
}

.hj67_header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.kl34_title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.mn78_description {
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.pq23_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
    gap: 0;
    width: 100%;
}

.vb89_box {
    background: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    z-index: 1;
}

/* Overlay effect */
.vb89_box::before {
    content: '';
    position: absolute;
    right: -45px;
    top: -45px;
   border-radius: 0px 0px 0px 100%;
    width: 100px;
  height: 100px;
    background: #ffbb00;
    transition: all 0.5s ease;
    z-index: -1;
   
}

.vb89_box:hover::before {
   
    right: 0;
    top: 0;
    width: 150%;
    height: 150%;
    color: #fff !important;
}
.vb89_box:hover .ef12_box_title {
    color: white;
}
.vb89_box:hover .gh34_box_text {
    color: white;
}
.vb89_box:hover img.dok {
opacity: 0; /* Hide default image */
display: none;
}

.vb89_box:hover img.rok {
opacity: 1; /* Show hover image */
visibility: visible;
display: block;
}
.gross{
    width: 100%;
    height: 60px;
}

.dok{
    transition: 0.5s;
}
.rok{
opacity: 0;
display: none;
visibility: hidden;
transition: 0.5s;
}
.cd45_icon {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.vb89_box:hover .cd45_icon {
    transform: scale(1.1) rotate(5deg);
    color: #1e40af;
}

.ef12_box_title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.gh34_box_text {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}


    /* Container styles */
    .xk92_wrapper {
        min-height: 20vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
       
    }

    .mn46_container {
        background-color: #ffbb00;
        border-radius: 1rem;
        padding: 2.5rem 2rem;
        width: 100%;
        max-width: 800px;
        text-align: center;
    }

    /* Text styles */
    .qw23_title {
        font-size: 1.875rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .jk89_subtitle {
        font-size: 1rem;
        color: #fff;
        margin-bottom: 2rem;
    }
    a{
        text-decoration: none;
        color: inherit;
    }

    /* Button container */
    .ht67_buttons {
        display: flex !important;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Button styles */
    .bc12_button {
        display:flex;
        align-items: center;
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .bc12_button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                   0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .bc12_button i {
        margin-right: 0.5rem;
        font-size: 1.25rem;
    }
    .bc12_button .vb78_whatsapp a{
        display: flex;
        align-items: center;

    }

    /* WhatsApp button */
    .vb78_whatsapp {
        background-color: #10b981;
        color: white;
        display: flex !important;
        align-items: center !important;
    }

    .vb78_whatsapp:hover {
        background-color: #059669;
    }

    /* Call button */
    .op45_call {
        background-color: #2563eb;
        color: white;
    }

    .op45_call:hover {
        background-color: #1d4ed8;
    }

    .croped-66-section {
        padding: 4rem 1rem;
        background-color: #ffffff;
    }

    .croped-66-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .croped-66-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .croped-66-title {
        font-size: 2rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 1rem;
    }

    .croped-66-subtitle {
        color: #4B5563;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        padding-bottom: 2rem;
    }

    .croped-66-subtitle::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background:#ffbb00;
    }

    .croped-66-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 1rem;
    }

    .croped-66-card {
        background-color: #ffbb0017;
        border: 2px solid #ffbb00;
        border-radius: 1rem;
        padding: 2rem;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .croped-66-card:hover {
        transform: translateY(-5px);
    }

    .croped-66-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 1.5rem;
    }

    .croped-66-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .croped-66-card-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #111827;
        margin-bottom: 1rem;
    }

    .croped-66-card-text {
        font-size: 1rem;
        color: #4B5563;
        line-height: 1.6;
    }


    .brown-dp-section {
        background-color: #f9fafb;
        padding: 4rem 1rem;
    }

    .brown-dp-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .brown-dp-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .brown-dp-title {
        font-size: 2rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .brown-dp-subtitle {
        color: #4a4a4a;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 1.5rem;
    }

    .brown-dp-subtitle::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: #ffbb00;
    }

    .brown-dp-description {
        max-width: 900px;
        margin: 0 auto;

        color: #666;
        line-height: 1.6;
    }

    .brown-dp-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .brown-dp-stat-card {
        background: white;
        border: 1px solid #ffbb00;
        border-radius: 1rem;
        padding: 2rem;
        display: flex;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .brown-dp-stat-card:hover {
        transform: translateY(-5px);
    }

    .brown-dp-icon {
        color: #ffbb00;
        font-size: 2.5rem;
        margin-right: 1rem;
    }

    .brown-dp-stat-content {
        flex: 1;
    }

    .brown-dp-number {
        font-size: 2rem;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.2;
    }

    .brown-dp-label {
        font-size: 1rem;
        color: #666;
        margin-top: 0.25rem;
    }


    
    .roman-section {
        width: 100%;
       
        background-color: #ffffff;
    }

    .roman-container {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 10px;
        padding: 3rem;
    }

    .roman-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }

    .roman-title {
        font-size: 2rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    .roman-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 10%;
        height: 3px;
        background-color: #ffbb00;
    }

    .roman-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .roman-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .roman-input-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .roman-label {
        font-size: 1rem;
        color: #666;
    }

    .roman-input,
    .roman-textarea {
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

    .roman-input:focus,
    .roman-textarea:focus {
        outline: none;
        border-color: #ffbb00;
    }

    .roman-textarea {
        min-height: 150px;
        resize: vertical;
    }

    .roman-button {
        background-color: #ffbb00;
        color: #fff;
        padding: 1rem 2rem;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
        width: fit-content;
    }

    .roman-button:hover {
        background-color: #e5a800;
    }

    .roman-contact-info {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .roman-info-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 1rem;
    }

    .roman-info-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .roman-icon-wrapper {
        background-color: #ffbb00;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .roman-info-content {
        color: #666;
        line-height: 1.6;
    }


      /* Footer Styles */
      .footer-wrapper {
        border-top: 1px solid #e5e7eb;
        background-color: #000000;
        width: 100%;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 1.5rem 1rem;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .footer-copyright {
        text-align: center;
        font-size: 0.875rem;
        color: #fff;
    }

    .footer-social-links {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .footer-social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 9999px;
        background-color: #fff;
        color: #6b7280;
        transition: all 0.2s;
    }

    .footer-social-link:hover {
        background-color: #ffbb00;
        color: white;
    }

    .footer-social-link svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .brok-btn{
        justify-content: unset;
    }

    


     /* Responsive */
     @media (min-width: 640px) {
        .footer-content {
            flex-direction: row;
        }

        .footer-copyright {
            text-align: left;
        }
    }

   /* Responsive Design */
   @media (max-width: 968px) {
    .consultation_grid_m44 {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .main_title_v33 {
        font-size: 2rem;
        text-align: center;
    }

    .features_list_p11 {
        max-width: 400px;
        margin: 2rem auto;
    }
}

@media (max-width: 768px) {
    .content_b88 h1 {
        font-size:2rem !important;
    }
    .stats_w44 {
        margin: auto;
    }
    .content_b88{
        text-align: center;
    }
    .icon_box_v66 {
        margin: auto;
    }
    .cnt_w77 {
        grid-template-columns: 1fr;
    }
    
    .stats_grid_m44,
    .benefits_grid_l33 {
        grid-template-columns: 1fr;
    }

    .benefits_title_f44 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .title_m77 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .states_grid_p88 {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        padding: 0rem;
    }
    .state_name_b33 {
        font-size: 1rem;
    }

    .consultation_grid_m44 {
        padding: 1.5rem;
    }

    .form_section_h55 {
        padding: 1.5rem;
    }

    .main_title_v33 {
        font-size: 1.75rem;
    }

    .feature_item_b88 {
        font-size: 1rem;
    }
    .rojis-box{
        flex: 40% !important;
    }
    .rojis-box img{
    width: 100px;
    height: 100px;
}
.rojis-box h5{
    font-size:0.8rem;
}
.qw23_title {
    font-size: 1.5rem;
}
.hero_k77{
    padding: 3rem 1rem;
}
.title_v33 {
    font-size: 2rem;
}

.programs_grid_k99 {
    grid-template-columns: 1fr;
}

.program_image_h55 {
    height: 185px;
}
.kl34_title {
    font-size: 2rem;
}

.pq23_grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.croped-66-title {
    font-size: 2rem;
}

.croped-66-subtitle {
    font-size: 1rem;
}

.croped-66-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.brown-dp-title {
    font-size: 2rem;
}

.brown-dp-subtitle {
    font-size: 1.1rem;
}

.brown-dp-description {
    font-size: 1rem;
}

.brown-dp-stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.roman-content {
    grid-template-columns: 1fr;
}

.roman-container {
    padding: 2rem;
}

.roman-title {
    font-size: 2rem;
}
}

@media (max-width: 480px) {
    .title_v33 {
        font-size: 1.75rem;
    }

    .subtitle_p11 {
        font-size: 1rem;
    }

    .program_content_w22 {
        padding: 1.5rem;
    }

    .program_title_l66 {
        font-size: 1.25rem;
    }
    .stats_x77{
       margin: 50px 1rem;
    }
    .benefits_y66 {
        margin: 0px 1rem;
    }
    .plat{
        padding: 10px !important;
    }
    .container_x77{
        padding: 10px;
    }
    .rom{
        padding: 0px !important;
    }
    .kl34_title {
        font-size: 1.75rem;
    }

    .mn78_description {
        font-size: 1rem;
    }

    .vb89_box {
        padding: 1rem 0.5rem;
        text-align: center;
    }
    .zx92_section {
        padding: 0px;
    }
    .vb89_box:hover img.rok{
        margin: auto;
    }
    .wy45_container {
        padding: 10px;
    }
    .pq23_grid{
        gap: 10px;
    }

    .mn45_container {
        padding: 2rem 1rem;
    }

    .qw23_title {
        font-size: 1.5rem;
    }

    .jk89_subtitle {
        font-size: 0.875rem;
    }

    .ht67_buttons {
        flex-direction: column;
    }

    .bc12_button {
        width: 100%;
        justify-content: center;
    }
    .rubin{
        background-color: unset !important;
        padding: 0px !important;
    }
    .stats_x77 {
        margin-top: -80px;
    }
    .croped-66-section {
        padding: 3rem 1rem;
    }

    .croped-66-title {
        font-size: 1.75rem;
    }

    .croped-66-card {
        padding: 1.5rem;
    }

    .brown-dp-section {
        padding: 3rem 1rem;
    }

    .brown-dp-title {
        font-size: 1.75rem;
    }

    .brown-dp-stat-card {
        padding: 1.5rem;
    }

    .brown-dp-number {
        font-size: 1.75rem;
    }

    .roman-section {
        padding: 2rem 1rem;
    }

    .roman-container {
        padding: 1.5rem;
    }

    .roman-title {
        font-size: 1.5rem;
    }

    .roman-button {
        width: 100%;
    }
    .btn_m55 h4{
        display: none;
    }
    
    .btn_m55{
        padding:0.4rem 1.4rem !important;
    }
    .content_b88{
        gap:0.7rem !important;
    }
    
    .title_m77 {
        font-size:1.5rem !important;
    }
   .container_x44{
        margin:13px auto !important;
    }
    
    .main_title_v33{
        margin-bottom:0 !important;
    }
    .features_list_p11 {
        margin:1rem auto !important;
    }
    .consultation_grid_m44{
        gap:0rem !important;
    }
    .xk92_wrapperr{
        padding:0rem 16px !important;
    }
        .rojis-box h5{
            font-size:0.7rem;
        }
        .xk92_wrapperr {
            padding:0px 16px !important;
        }
        .btn_grp_p11{
            display:none !important;
        }
        
        .logo_j22 {
            margin:auto !important;
        }
}

 /* Animation */
 @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mn46_container {
    animation: fadeIn 0.6s ease-out;
}
.mn45_container {
    animation: fadeIn 0.6s ease-out;
}
.container_f33{
    animation: fadeIn 0.6s ease-out;
}
.container_x44{
    animation: fadeIn 0.6s ease-out;
}
.container_x77{
    animation: fadeIn 0.6s ease-out;
}