:root {
    /* --theme-gradient: linear-gradient(90deg, #26A4EE 0%, #0EDF87 100%); */
    --theme-gradient: linear-gradient(90deg, #0AAAC7 0%, #0EDF87 100%);
    /* --theme-gradient: linear-gradient(90deg, #F6389A 0%, #F84249 100%); */
    --primary-color: #003552;
    --text-muted: #555555;
    --bg-main: #ffffff;
    --bg-light-green: #edfefa;
    --bg-beige: #e9fff7;
    --bg-pink: #fef0f5;
    --bg-footer: #151515;
    --accent-green: #0EDF87;
    --border-radius-lg: 20px;
    --border-radius-sm: 8px;
    --font-main: "Montserrat", sans-serif;
    --spacing-section: 5rem 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--primary-color);
    background-color: var(--bg-main);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    font-size: 16px;
    font-family: var(--font-main);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
.ra-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

.pb-0 {
    padding-bottom: 0!important;
}
/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
}
.arrow-btn-area {
    display: table;
}
.arrow-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 6px 6px 6px 15px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    font-size: 15px;
    font-family: var(--font-main);
    text-transform: capitalize;
    max-width: 200px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.arrow-btn .icon svg {
    max-width: 22px;
    color: #0cd098;
    width: 100%;
}

.arrow-btn .icon {
    display: flex;
    height: 36px;
    width: 36px;
    background: #ffffff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.btn-dark {
    background: var(--theme-gradient);
    color: #fff;
    font-family: var(--font-main);
}

.btn-dark:hover {
   background: #0aaec2;
}

.btn-gradient {
    background: var(--theme-gradient);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--bg-beige);
}

.arrow-btn:hover {
    background: #0aaec2;
    /**color: var(--primary-color);**/
    /**box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);**/
}

.btn-gradient:hover {
    background: #0aaec2;
    /**color: var(--primary-color);**/
    /**box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);**/
}

/**.arrow-btn:hover .icon {
    background: var(--theme-gradient);
}**/

.arrow-btn:hover .icon svg {
    color: #0aaec2;
}
/* --- Header & Nav --- */
.promo-bar {
    background-color: var(--primary-color);
}

.promo-bar p {
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: capitalize;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: var(--bg-main);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eaeaea;
}

.header-content .logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #003552;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 28%;
    flex: 0 28%;
    text-transform: uppercase;
}

.logo img {
    max-width: 150px;
    width: 100%;
}

.header-content nav {
    width: 44%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    font-weight: 500;
    justify-content: center;
}

.header-content nav ul li a {
    font-size: 16px;
    font-weight: 600;
}

.header-content nav ul li a.active {
    background: linear-gradient(90deg, rgb(38, 164, 238) 0%, rgb(14, 223, 135) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-content nav ul li a:hover {
    background: linear-gradient(90deg, rgb(38, 164, 238) 0%, rgb(14, 223, 135) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-content .header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 28%;
    flex: 0 28%;
    justify-content: flex-end;
}

.login-link .user-icon svg {
    max-width: 15px;
    vertical-align: middle;
}

.header-actions .login-link {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 16px;
}

.header-actions .login-link:hover { 
    background: linear-gradient(90deg, rgb(38, 164, 238) 0%, rgb(14, 223, 135) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.login-link .user-icon img {
    max-width: 14px;
    display: inline;
    width: 100%;
}

.login-link .user-icon {
    margin-right: 4px;
    vertical-align: middle;
}

/* --- Hero Section --- */
/* .hero-sec {
    background: var(--bg-light-green);
} */

.hero-sec .hero {
    display: flex;
    align-items: center;
    padding: 7.5rem 0 8.5rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    margin-top: -70px;
}

.hero-content .hero-feature-area {
    padding-bottom: 40px;
    border-bottom: 1px solid #eaeaea;
}

.hero-feature-area ul {
    list-style: none;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 130px);
    gap: 14px;
}

.hero-content .main-hero-text {
    padding-top: 30px;
}

.hero-feature-area ul li {
    background: #f6f6f6;
    height: 80px;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .hero-feature-area ul .bbb-review-list {
    background: #eef9ff;
}

.hero-feature-area ul .tp-review-list {
    background: #ebfdf7;
}

.hero-feature-area ul .ck-review-list {
    background: #edffed;
} */

.hero-feature-area ul .review-item h3 {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    margin: 8px 0 0px;
    color: #000000;
}

.hero-feature-area .tp-review img {
    max-width: 88px;
    width: 100%;
    margin: auto;
}

.hero-feature-area .bbb-review img {
    max-width: 52px;
    width: 100%;
    margin: auto;
}

.hero-feature-area .review-item img {
    height: 27px;
    object-fit: contain;
}

.hero-feature-area .ck-review img {
    max-width: 88px;
    width: 100%;
    margin: auto;
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color) ;
    text-transform: capitalize;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Google Sans", sans-serif;
}

.hero .hero-content h4 {
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 600;
    background: linear-gradient(90deg, rgb(38, 164, 238) 0%, rgb(14, 223, 135) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Google Sans", sans-serif;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-disclaimer {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image .hero-image-area {
    max-width: 500px;
    height: 500px;
    background: #e6f8f3;
    border-radius: 30px;
    margin-left: auto;
    position: relative;
}

.hero-image .hero-main-img {
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 480px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}

.hero-feature-box {
    display: flex;
    /* background: #ffffff; */
    max-width: 400px;
    width: 100%;
    /* padding: 14px 10px; */
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 15px 5px rgb(229 202 210 / 20%);
    -moz-box-shadow: 0px 0px 15px 5px rgb(229 202 210 / 20%);
    box-shadow: 0px 0px 15px 5px rgb(229 202 210 / 20%);
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-feature-box h3 {
    font-size: 18px;
    text-align: center;
    color: #000000;
    display: block;
    margin: 0 0 5px;
    font-weight: 600;
}

.hero-feature-box.tp-box img {
    max-width: 100px;
    width: 100%;
    margin: auto;
}

.hero-feature-box.bbb-box img {
    max-width: 65px;
    width: 100%;
    margin: auto;
}

.hero-feature-box.ck-box p {
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}

.hero-feature-box.ck-box img {
    max-width: 96px;
    margin: auto;
    width: 100%;
}

.hero-feature-box:nth-child(1) {
    position: absolute;
    bottom: 38%;
    z-index: 1;
    right: -17px;
    display: block;
    max-width: 180px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-feature-box .est-monthly-payment-area p {
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
    font-weight: 500;
    color: #000000;
}

.est-monthly-payment-area h3 {
    font-size: 22px;
    margin: 5px 0 10px;
}

.est-monthly-payment-area .claim-btn {
    padding: 5px 14px 5px;
    font-size: 15px;
    margin: auto;
    display: block;
    width: 100%;
}

.hero-feature-box:nth-child(2) {
    position: absolute;
    bottom: -20%;
    right: 0;
    z-index: 1;
    left: 0;
    margin: auto;
}

.hero-feature-box:nth-child(3) {
    position: absolute;
    left: -50px;
    bottom: 20%;
    z-index: 1;
    display: none;
}

.hero-feature-box .sas-card::before {
    content: '';
    background: url(../images/arrow-right.png);
    background-size: contain;
    width: 80px;
    height: 80px;
    position: absolute;
    top: -34%;
    left: 55%;
    background-repeat: no-repeat;
    transform: translateX(-50%);
}

.sas-card {
    width: 100%; /* Adjust as needed, matching image proportion */
    max-width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: visible; /* Ensures the border-radius applies to all children */
    user-select: none; /* Prevents text selection while dragging the slider */
    position: relative;
}

/* --- Header Section --- */
.sas-card .sas-header {
    background: var(--theme-gradient); /* matched green color */
    padding: 10px 20px;
    height: 10px; /* Gives the thin bar look */
    display: flex;
    align-items: center;
    border-radius: 8px 8px 0 0;
}

.sas-card .sas-header-dots {
    display: flex;
    gap: 6px;
}

.sas-card .sas-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
}

/* --- Body Section --- */
.sas-card .sas-body {
    padding: 15px 25px;
}

/* --- Info Row --- */
.sas-card .sas-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.sas-card .sas-card-title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
}

.sas-card .sas-amount-container {
    text-align: right;
}

.sas-card .sas-amount-value {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    line-height: 1;
}

.sas-card .sas-amount-label {
    font-size: 14px;
    color: #888888;
    margin-top: 8px;
    line-height: 1.2;
}

/* --- Divider Section --- */
.sas-card .sas-divider {
    border-top: 1px solid #e0e0e0;
    margin-bottom: 14px;
}

/* --- Slider Group Section --- */
.sas-card .sas-slider-group {
    position: relative;
    padding-top: 44px; /* Space for the tooltip */
    padding-bottom: 0px; /* Space for the range labels */
}

/* Custom Interactive Slider Control */
.sas-card .sas-custom-slider {
    position: relative;
    width: 100%;
    height: 4px;
    cursor: pointer;
}

.sas-card .sas-slider-track-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0; /* light grey track background */
    border-radius: 3px;
}

.sas-card .sas-slider-track-fill {
    position: absolute;
    height: 100%;
    background: var(--theme-gradient);
    border-radius: 3px;
    width: 15%; /* Initial value (will be overwritten by JS) */
}

.sas-card .sas-slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 3px solid #0aadc3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 15%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.sas-card .sas-slider-thumb-inner {
    width: 8px;
    height: 8px;
    background: var(--theme-gradient); /* inner green dot */
    border-radius: 50%;
}

/* Tooltip Section */
.sas-card .sas-tooltip-container {
    position: absolute;
    top: -1px; /* Adjust to sit above the track */
    left: 15%; /* Initial position (will be overwritten by JS) */
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none; /* Allows clicks to pass through to the slider track */
}

.sas-card .sas-tooltip {
    background-color: #333333;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

/* The pointer arrow on the tooltip */
.sas-card .sas-tooltip::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #333333;
}

/* Range Labels Section */
.sas-card .sas-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #000000;
    margin-top: 8px;
    margin-bottom: 10px;
    font-weight: 400;
}

/* Container and Heading */
.loan-term-container .loan-term-label {
    font-size: 15px;
    color: #333333;
    margin-bottom: 10px;
    text-transform: capitalize;
    text-align: left;
    font-weight: 600;
}

.loan-term-container .loan-term-group {
    display: flex;
    gap: 10px;
}

/* Hide the actual radio input */
.loan-term-container input[type="radio"] {
    display: none;
}

/* Base button style */
.loan-term-container .term-btn {
    padding: 5px 12px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 13px;
    color: #28050d;
    background: rgb(221, 244, 238);
}

.loan-term-container .term-btn:hover {
    background: var(--theme-gradient);
    color: #ffffff;
}

/* Selected State: Styling the label when the input is checked */
.loan-term-container input[type="radio"]:checked + .term-btn {
    background: var(--theme-gradient);
    color: #fff;
    /* border-color: #000; */
}





/* --- Features Section --- */
.features-sec {
    background: #e6f8f3;
    margin-top: 20px;
}

.features-sec .features {
    text-align: center;
    padding: 4rem 0;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.features-grid .feature-icon-area {
    position: relative;
    display: table;
    z-index: 1;
    margin: 0 0 15px;
}

.feature-item .feature-icon-area img {
    max-width: 40px;
    width: 100%;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features-grid .feature-icon-area:after {
    content: '';
    height: 35px;
    width: 35px;
    background: var(--theme-gradient);
    border-radius: 50%;
    position: absolute;
    top: -2px;
    right: -12px;
    z-index: -1;
}

.feature-item .feature-icon-area img {
    max-width: 40px;
    width: 100%;
}
/* --- Split Sections (Content Blocks) --- */
.split-area {
    display: flex;
    padding: var(--spacing-section);
    gap: 4rem;
    align-items: center;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: var(--border-radius-lg);
    width: 100%;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Cards inside split sections */
.info-card {
    background-color: var(--bg-beige);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card-white {
    background-color: var(--bg-main);
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.info-card .save-money-text {
    background: linear-gradient(90deg, rgb(38, 164, 238) 0%, rgb(14, 223, 135) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin: 0 0 0.5rem;
    font-size: 18px;
}

.info-card p {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.pink-bg { background-color: var(--bg-pink); }

.steps-list {
    list-style: none;
    counter-reset: my-counter;
}

.steps-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.steps-list li::before {
    counter-increment: my-counter;
    content: counter(my-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--theme-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
}

/* --- Trustpilot Section --- */
.trustpilot {
    padding: 3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    overflow-x: auto;
}

.tp-widget {
    flex-shrink: 0;
}

.tp-stars {
    color: #f7dd65;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.review-slider .swiper-wrapper {
    align-items: stretch;
}

.review-slider .swiper-slide {
    display: flex;
    height: auto;
}


.review-slider {
    margin-top: 0;
    padding: 0px 0 50px;
}

.review-slider .swiper-pagination-bullet {
    background: #0bb4bc !important;
}

.review-card {
    background: var(--theme-gradient);
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.08); */
}

.review-card p {
    color: #ffffff;
    margin-bottom: 10px;
}

.tp-widget {
    text-align: center;
    margin-bottom: 20px;
}

/* --- CTA Banner --- */
.cta-banner {
    background-color: var(--bg-beige);
    margin: 0 5%;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-banner h2 { font-size: 1.8rem; }

/* --- FAQ Section --- */
.faq-area {
    display: flex;
    padding: var(--spacing-section);
    gap: 4rem;
}

.faq-header {
    flex: 1;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-list {
    flex: 2;
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Arbitrary large number for animation */
    margin-top: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- Disclosures --- */
.disclosures {
    padding: 3rem 5%;
    border-top: 1px solid #eaeaea;
}

.disclosures p {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    background: linear-gradient(90deg, rgb(38, 164, 238) 0%, rgb(14, 223, 135) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #024061;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: #c3c3c3;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* --- Responsive Design --- */

@media (max-width: 1200px) {
    .header-actions .arrow-btn-area {
        display: none;
    }
}

@media (max-width: 992px) {
    .header-actions .btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    /* Mobile Navigation Adjustments */
    nav ul { 
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-main);
        padding: 1.5rem 5%;
        border-bottom: 1px solid #eaeaea;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        gap: 1.5rem;
    }

    /* Class added via JavaScript to show the menu */
    nav ul.active {
        display: flex;
    }
    .header-content nav {
        width: auto;
        transition: max-height 0.3s ease;
    }
    header .ra-container {
        overflow: visible;
    }

    .header-content .logo {
        width: 30%;
        flex: 0 30%;
    }

    .header-content .header-actions {
        width: 70%;
        flex: 0 70%;
    }

    .hero-image {
        clear: both;
        width: 100%;
    }
    .hero, .split-area, .faq-area {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-sec .hero {
        gap: 8rem;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-banner { flex-direction: column; text-align: center; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-image .hero-image-area {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-feature-area ul {
        justify-content: center;
    }
    .hero .hero-content h4 {
        text-align: center;
    }
    .hero-content h1 {
        text-align: center;
    }
    .hero-content p {
        text-align: center;
    }
    .hero .arrow-btn-area {
        display: table;
        margin-inline: auto;
    }
    .hero-disclaimer {
        text-align: center;
    }
    .features-grid {
    gap: 3rem;
    text-align: center;
    }
    .features-grid .feature-icon-area {
        margin: auto auto 15px;
    }
    .feature-item h3 {
        text-align: center;
    }
    .feature-item p {
        text-align: center;
    }
    .support-section .support-split-area .split-image {
        order: 2;
    }
    .support-section .support-split-area .split-content {
        order: 1;
    }
    .faq-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-content h1 {
        text-align: center;
        font-size: 2.rem;
    }
    .hero-sec .hero {
        padding: 6rem 0 8.5rem;
    }
    .hero-content .hero-feature-area {
	padding-bottom: 24px;
    }
   .hero-content .main-hero-text {
       padding-top: 20px;
   }
}

@media (max-width: 480px) {
    .promo-bar p {
        font-size: 0.8rem;
    }
    .header-content .logo {
        width: 35%;
        flex: 0 35%;
    }
    .header-content .header-actions {
        width: 65%;
        flex: 0 65%;
    }
    .header-content .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        width: 70%;
        flex: 0 70%;
        justify-content: flex-end;
    }
    .hero-feature-area ul {
        grid-template-columns: repeat(3, 100px);
    }
    .hero-feature-area .ck-review img {
        max-width: 72px;
    }
    .hero-feature-area .tp-review img {
        max-width: 72px;
    }
    .hero-feature-area .bbb-review img {
        max-width: 40px;
    }
    .hero-feature-area ul .review-item h3 {
        font-size: 14px;
    }
     .hero-sec .hero {
        gap: 5rem;
    }
    .hero-image .hero-image-area {
        max-width: 400px;
        height: 440px;
    }
    .hero-feature-box {
        max-width: 340px;
        width: 100%;
    }
    .sas-card .sas-body {
        padding: 12px 12px;
    }
    .sas-card .sas-amount-value {
        font-size: 16px;
    }
    .sas-card .sas-card-title {
        font-size: 14px;
    }
    .sas-card .sas-slider-group {
        padding-top: 40px;
    }
    .loan-term-container .loan-term-label {
        font-size: 14px;
    }
    .sas-card .sas-divider {
        margin-bottom: 10px;
    }
    .loan-term-container .term-btn {
        padding: 4px 12px;
        font-size: 12px;
    }
    .hero-feature-box .sas-card::before {
        width: 60px;
        height: 60px;
        top: -27%;
        left: 44%;
        transform: translateX(-50%);
    }
    .cta-banner {
        margin: 0 0;
        padding: 2rem;
    }
    .features h2 {
        font-size: 1.6rem;
    }
    .info-card h3 {
        font-size: 1.4rem;
    }
    .cta-banner h2 {
        font-size: 1.4rem;
    }
    .faq-header h2 {
        font-size: 1.6rem;
    }
    .hero-feature-area ul li {
        height: 75px;
        padding: 8px;
    }
    .hero-feature-area ul .review-item h3 {
        margin: 5px 0 0px;
    }
}


@media (max-width: 420px) {
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    .hero-image .hero-image-area {
        max-width: 400px;
        height: 400px;
    }
    .hero-feature-box:nth-child(2) {
        bottom: -30%;
    }
    .est-monthly-payment-area h3 {
        font-size: 20px;
    }
    .hero-feature-box:nth-child(1) {
        bottom: 34%;
        max-width: 160px;
    }
    .hero-feature-box {
        max-width: 300px;
        width: 100%;
    }
}

@media (max-width: 390px) {
    .hero-image .hero-image-area {
        height: 390px;
    }
}




/*******Container for different screen sizes*********/
@media (min-width: 576px) {
    .ra-container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .ra-container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .ra-container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .ra-container {
        max-width: 1200px;
    }
}
@media (min-width: 1400px) {
    .ra-container {
        max-width: 1200px;
    }
}