
    body {
        font-family: "Inter", sans-serif;
        line-height: 1.6;
        color: #333;
    }
    a {
        text-decoration: none;
    }
    header {
        background: #fff;
        padding: 10px 20px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    header .logo {
        height: 50px;
    }
    header .btn-orange {
        background-color: #ff6200;
        color: #fff;
        border: none;
        padding: 8px 20px;
        font-size: 1em;
        font-weight: 700;
        transition: background-color 0.3s;
    }
    header .btn-orange:hover {
        background-color: #e65c00;
    }
   h2{line-height: 1;}

    .hero {
        background: #ededf5 url('/assets/images/hero.jpg') no-repeat;
        color: #fff;
        text-align: center;
        padding: 10px 20px 30px;
        min-height: 650px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        justify-content: center;
        background-position: top;
        margin-top: 60px;  
        background-size: cover;
    }
    .hero h1 {
        color: #C8EEFF;
        font-size: 3.6em;
        font-weight: 700;
        margin-bottom: 0px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        line-height:1;
    }
    .hero h1 span {
        color: #fff;
        display: block;
    }
    .hero p {
        font-size: 1.2em;
        max-width: 800px;
        margin: 0 auto 40px;
        font-weight: 400;
    }
    .hero ul {
        list-style: none;
        font-size: 1em;
        margin-bottom: 0px;
        color: #ccc;
        margin-left: 0px;
        padding-left: 0px;
    }
    .hero ul li {
        margin: 5px 0 0;
        color: #FFF;
        font-style: normal;
        font-weight: 500;
        font-size: 1.3rem;
        line-height: 1.2;        
    }
    .hero ul li::before {
        display:inline-block;
        content: "\2714";
        color: #fff;
        font-size: 14px;
        margin-right: 10px;
        background: #037D00;
        width: 26px;
        border-radius: 50%;
        height: 26px;
        text-align: center;
        line-height: 26px;
    }
.form-container {    
    border-radius: 20px;
    background: #FFF;
    padding: 25px 20px 0px; 
}
.form-container h2 {
    color: #2E2E2E;
    text-align: center;
    font-style: normal;
    font-weight: 700;
}
.amount-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745; 
    max-width: 120px;
    width:100%;
    margin: auto;
    padding: 12px 5px;
    line-height: 1;
    border: 0.758px solid #A1A1A1;
}
.form-container p {
    color: #484848;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
}
.slider-container {
    margin: 0 auto;
    width: 100%;
}

.form-range {
    width: 100%;
    height: 12px;
    background: linear-gradient(to right, #007bff 0%, #007bff 0%, #ddd 0%, #ddd 100%);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: absolute;
}

.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: absolute;
}

.form-range::-webkit-slider-runnable-track {
    background: linear-gradient(to right, #007bff var(--value), #ddd var(--value));
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px; 
    background: #1774FC; 
    border-radius: 50%; 
    cursor: pointer;
    border: 2px solid #ddd; 
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); 
    transition: all 0.2s ease; 
   position: relative;
   top:-7px;
}

.form-range::-webkit-slider-thumb:hover {
    background: #e55a00;
    transform: scale(1.1); 
}

.form-range::-moz-range-thumb {
    width: 30px; 
    height: 30px;
    background: #1774FC; 
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ddd;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    position: relative;
    top:-7px;
}

.form-range::-moz-range-thumb:hover {
    background: #e55a00;
    transform: scale(1.1);
}
.slider-container span {
    color: #6F6F6F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;   
    
}
.btn-custom {
    background-color: #ff6200; 
    color: white;
    font-weight: bold;
    border: none;
    text-transform: capitalize;
    font-size: 1.2rem;
    padding: 15px 20px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
}

.btn-custom:hover, .btn-custom:active {
    background-color: #e55a00 !important;
}

.text-muted {
    font-size: 0.9rem;
}

    /* Why People With Credit Challenges Choose Us */
    .why-choose-us {
        padding: 80px 20px;
        text-align: center;
        background: url(/assets/images/section-bg.jpg) no-repeat;
        background-color: #ededf5;
        background-size: cover;
        background-position: center right;
    }
    .why-choose-us h2 {
        font-size: 2.8em;
        color: #2E2E2E;
        margin-bottom: 40px;
        font-weight: 700; 
    }
    .why-choose-us h2 span{
        display:block;
    }
    .why-choose-us .card {
        min-width: 220px;
        padding: 10px 0px 10px;
        background: #fff;
        border-radius: 50px 0px;
        border-width: 0px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    .why-choose-us .card p{
       line-height: 1.2;
     }
    .why-choose-us .card h3{
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom:0px;
     }
    .divider{     
        width: 110px;
        height: 4px;
        flex-shrink: 0;     
        border-radius: 17.586px;
        background: linear-gradient(90deg, #6D23DD 0%, #1774FC 100%);
        margin: 20px auto;
    }

    .why-choose-us .card span {
        font-size: 2em;
        color: #ff6200;
        margin-bottom: 15px;
        display: block;
    }

    /* How To Find Loans */
    .how-to-find {
        padding: 80px 20px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }
    .how-to-find h2 {
        margin-bottom: 20px;
        color: #2E2E2E;
        font-size: 3rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1;
    }
    .how-to-find p {
        color: #2E2E2E;
        font-size: 1.3rem;
        font-style: normal;
        font-weight: 300;
        line-height: normal;

    }
    .how-to-find img {
        max-width: 450px;
        border-radius: 10px;
        width: 100%;
    }
    .how-to-find ul {
        list-style:none;
        font-size: 1.1em;
        padding-left: 0px;
    }
    .how-to-find ul li {
        margin-bottom: 5px;
        color: #000;
        font-size: 1em;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        display: inline-flex;
        align-items: self-start;       
   }
    .how-to-find ul li span {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
    background: #F16D12;
    border-radius: 50%;
    height: 30px;
    text-align: center;
    line-height: 30px;
    width: 100%;
    max-width: 30px;
    }

    /* Loan Options */
    .loan-options {
        padding: 80px 20px;
        background: #062455;
        color: #fff;
        text-align: center;
    }
    .loan-options h2 {
    font-size: 3em;
    margin-bottom: 40px;
    font-weight: 700;
    }
    .loan-options  h2 span{  
        display:block;
    }
    
    .loan-options .card {
        min-width: 200px;
        padding: 20px 0px;
        background: #fff;
        color: #333;
        border-radius: 50px 0px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;
        border-width: 0px;
    }
    .loan-options .card h3{
        background: #0057D7;
        padding: 10px;
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: 0px;
        margin-top: 20px;        
    }
    .loan-options .card p{
        line-height: 1.2;
        margin-bottom: 0px;
        padding: 0px 20px;
    }

    /* Common Loan Questions */
    .questions {
        padding: 80px 0px;
        background: #E9EEF0;
        text-align: center;
    }
    .questions h2 {
        margin-bottom: 40px;
        color: #2E2E2E;
        text-align: center;
        font-family: Inter;
        font-size: 3rem;
        font-style: normal;
        font-weight: 700;        
    }
    .questions form {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .questions input[type="text"] {
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1em;
        transition: border-color 0.3s;
    }
    .questions input[type="text"]:focus {
        outline: none;
        border-color: #1e3a8a;
        box-shadow: 0 0 5px rgba(30, 58, 138, 0.5);
    }
        .faq-section {
            max-width: 800px;
            margin: auto;
            padding: 0px 20px;
        }
        .faq-title {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 30px;
        }
        .accordion-button:not(.collapsed) {
            background-color: #fff;
            box-shadow: none;
        }
        .accordion-item {
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 10px;
        }
        .accordion h2{
            margin-bottom:0px;
            font-weight: 600;
            color: #2E2E2E;
            font-size: 30px;
        }
 .accordion-body {
    text-align: left;
    line-height: 1.4;
 }
.accordion-button {
    font-size: 1.4rem;
    font-weight: 600;
 }
    /* CTA */
    .cta {
        color: #fff;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 10px;
    }
    .cta h2 {
        font-size: 3.2em;
        margin-bottom: 20px;
        color:#fff;
        font-weight: 700;
    }
    .cta h2 span{
      display:block;  
    }    
    .cta p {
        font-size: 1.2em;
        margin-bottom: 40px;
        max-width: 800px;
        color:#fff;
        line-height: 1.1;
    }
    .cta p span{    
      display:block;
      color: #96DEFF;
      font-size: 2em;
      font-weight: 600;
      
    }
    .cta-content {
        border-radius: 70px;
        background: linear-gradient(114deg, #1553AD -2.43%, #27155B 98.47%);
        padding: 20px 20px 40px;
   }
.cta-content .form-container {
    background: transparent;
}
.loan-form {
    border-radius: 36.64px;
    background: #FFF;
    max-width: 600px;
    margin: auto;
    padding: 40px 20px 10px;
    width: 100%;
}
.cta .loan-form h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2E2E2E;
    text-align: center;
}
.cta .loan-form p {
    font-size: 1em;
    line-height: 1.1;
}

    /* Understand Credit Challenges */
.understand {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
}
.understand::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 600px;
    background: url(/assets/images/bottom.jpg) no-repeat center / contain;
    z-index: -1;
    max-width: 1100px;
}
    .understand h2 {
        font-size: 2.5em;
        color: #1e3a8a;
        margin-bottom: 20px;
        font-weight: 700;
    }
    .understand p {
    max-width: 800px;
    margin: 0 auto 10px;
    font-size: 1.05em;
    line-height: 1.2;
    }
    .understand .inner-content {    
        border-radius: 30px;
        background: #FFF;
        box-shadow: 10px 22px 50px 0px rgba(0, 0, 0, 0.15); 
        padding: 40px;
    }

    /* Footer */
    footer {
        background: #2B2B2B;
        color: #fff;
        text-align: center;
        padding: 40px 0px;
    }
    footer a {
        color: #ff6200;
        margin: 0 15px;
        font-size: 1em;
    }
    footer p {
        margin: 10px 0;
        font-size: 0.9em;
    }
    footer img {
        height: 40px;
        margin-bottom: 15px;
    }
 .index_footer-inline {
    list-style-type: none;
    margin: 0;
    padding: 0;
} 
.inline_item-li {
    display: inline;
    border-right: 1px solid #fff;
    margin: 0px 5px 0px 0px;
}
.index_footer-inline .inline_item-li a {
    font-size: 16px;
}

.index_footer-inline .inline_item-li a {
    color: #fff;
    padding: 0px 12px;
    text-decoration: none;
}
.inline_item-li:last-child {
    border-right: 0px solid #fff;
}
.footer-logo-bm {
    width: 280px;
    height: auto;
}
.page_footer p {
    position: relative;
}

.footer_parah {
    color: #ffffff;
    text-align: center;
}
.footer_parah {
    font-size: 16px !important;
}

.footer_parah_offer {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    padding: 0px 10px;
    line-height: 1.2;
}
h2 span{display:block;}

@media (max-width: 768px) {
.why-choose-us, .loan-options, .how-to-find, .questions, .understand {
    padding: 40px 20px;
}

header .btn-orange { margin-top: 10px; }
.hero h1 { font-size: 2.5em; }
.hero p { font-size: 1em; margin-bottom: 20px;}
.loan-form { max-width: 100%; padding: 20px; }
.why-choose-us .card, .loan-options .card { min-width: 100%; }
.how-to-find { flex-direction: column; text-align: center; }
.how-to-find img { max-width: 100%; }
.questions form { width: 100%; padding: 0 10px; }
.cta h2 { font-size: 2em; }
.understand::after { display: none; }
footer a { margin: 10px 0; }
.understand {
    align-items: flex-start;
    min-height: auto;
    padding-top: 10px;
 }
}


@media (max-width: 576px) {
.loan-options h2, .how-to-find h2, .why-choose-us h2, .questions h2, .understand h2 {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
.understand .inner-content {
    padding: 20px;
}  
.faq-section {
    padding: 0px 0px;
}  
.questions h2.accordion-header {
    font-size: 1.6em;
    margin-bottom: 0px;   
} 
.accordion-button {
    font-size: 1.2rem;
}
.accordion-body {
    padding-top: 0px;
}  
.form-container h2 {
    font-size: 1.3em;
}
.cta .form-container h2 {
    font-size: 2.2em;
}
header {
    background: #fff;
    padding: 10px 0px;
}
.hero h1 { 
    font-size: 2.6rem;
    margin-bottom: 10px;
    }
.hero p { font-size: 1em;line-height: 1.1; }
.hero ul li::before {
    font-size: 13px;
    width: 24px;
    height: 24px;
    line-height: 24px;
}
}

@media (max-width: 480px) {
.cta-content {
    padding: 20px 15px 40px;
}    
.cta .loan-form h2 {
    font-size: 1.4em;
}
.cta .form-container {
    padding: 25px 0px 0px;
}
 .hero ul li {
    margin: 2px 0 0;
    font-size: 1.1rem;
    line-height: 1.2;
  } 
.hero ul li::before {
    font-size: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}  
}    

@media (max-width: 400px) {
.hero ul li {
    margin: 2px 0 0;
    font-size: 1rem;
    line-height: 1.1;
 }    
}    

