@font-face {
    font-family: 'Clash Display';
    src: url('assets/fonts/ClashDisplay-Semibold.woff2') format('woff2'),
        url('assets/fonts/ClashDisplay-Semibold.woff') format('woff'),
        url('assets/fonts/ClashDisplay-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: "DM Sans", sans-serif;
    background: #D9E6FF;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-link {
    text-decoration: none;
    border: none;
}

/* Navbar */
.navbar-container {
    position: sticky;
    top: 30px;
    padding: 0 20px;
    z-index: 20;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background: #FFFFFF1A;
    max-width: 1304px;
    width: 100%;
    margin: auto;
    border-radius: 60px;
}

.navbar.scrolled {
    background: #2d2d2d !important;
    transition: background 0.3s;
}

.navbar-logo {
    cursor: pointer;
    height: 67.56px;
    margin-right: 12px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin-top: 5px;
}

.navbar-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    transition: color 0.2s;
}

.navbar-links li button {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    background: none;
    border: none;
    font-weight: 400;
    line-height: 23px;
    transition: color 0.2s;
    cursor: pointer;
}

.navbar-links li button:hover {
    color: #D0D370;
}

.navbar-links li a:hover {
    color: #D0D370;
}

.rewards-btn {
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    white-space: nowrap;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 20px;
    border-radius: 999px;
    padding: 12px 10px 12px 30px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(56, 120, 88, 0.08);
    transition: background 0.5s, color 0.5s;
    position: relative;
}

.rewards-btn:hover {
    background: white;
    color: #2D2D2D;
}

.rewards-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #D9305B 0%, #7E2784 100%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 15px;
    color: #fff;
    transition: background 0.5s;
}

.rewards-btn:hover .rewards-btn-icon {
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    color: #2D2D2D;
}

/* Hamburger Icon */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    margin-left: 16px;
}

.navbar-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85vw;
    max-width: 340px;
    height: 100vh;
    background: linear-gradient(182.82deg, #D9305B 18.33%, #7E2784 97.65%);
    box-shadow: -2px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 24px 24px;
    transition: right 0.3s;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #2D2D2D;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 16px;
}

.mobile-menu-logo {
    height: 48px;
    margin-bottom: 32px;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu-links li a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu-links li button {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

.mobile-rewards-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
}

/* Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
}

.mobile-menu.open~.mobile-menu-backdrop {
    display: block;
}

.mobile-rewards-btn {
    display: none;
}

.reward-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1150px) {
    .navbar {
        border-radius: 20px;
    }

    .navbar-logo {
        height: 50px;
        margin-right: 8px;
    }

    .navbar-links {
        display: none;
    }

    .navbar-hamburger {
        display: flex;
    }
}

@media (max-width: 900px) {
    .navbar {
        top: 20px;
        padding: 10px 16px;
    }

    .navbar-brand {
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
        margin-right: 0;
    }

    .navbar-hamburger {
        display: flex;
        margin-left: auto;
    }
}

@media (max-width: 640px) {
    .navbar {
        border-radius: 14px;
    }

    .navbar-logo {
        height: 40px;
        margin-right: 8px;
    }

    .navbar-hamburger {
        width: 2;
    }

    .navbar-container {
        top: 20px;
    }
}

.hero-bg-wrapper {
    height: 988px;
    padding: 0 20px;
    position: relative;
    background: url('./assets/hero-bg.webp') no-repeat;
    width: 100%;
    background-size: cover;
    margin-top: -95px;
    overflow: hidden;
}

/* Hero Section */
.hero-container {
    padding-top: 350px;
    background: none;
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: auto;
    overflow: visible !important;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    overflow: visible;
}

/* Decorative pseudo-element */
.hero-content::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -60px;
    width: 120%;
    height: 130%;
    background-image:
        url('./assets/star.svg'),
        url('./assets/circle.svg'),
        url('./assets/curve-line.svg');
    background-repeat: no-repeat;
    background-position:
        0 24px,
        54.5% 9px,
        35% 76%;
    pointer-events: none;
    z-index: -1;
}

.hero-text {
    max-width: 606px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-text h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: 70px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0%;
}

.hero-text p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0;
}

.hero-btn {
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    white-space: nowrap;
    display: flex;
    align-items: center;
    background: white;
    border: none;
    color: #2D2D2D;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    border-radius: 999px;
    padding: 10px 10px 10px 20px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(56, 120, 88, 0.08);
    transition: background 0.5s, color 0.5s;
    position: relative;
    width: fit-content;
}

.hero-btn:hover {
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    color: #fff;
}

.hero-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 15px;
    color: #fff;
    transition: background 0.5s, color 0.5s;
}

.hero-btn:hover .hero-btn-icon {
    background: linear-gradient(180deg, #D9305B 0%, #7E2784 100%);
}

.hero-images {
    display: flex;
    flex-direction: column;
    min-width: 568px;
    width: 568px;
    height: 580px;
    margin-top: -74px;
}


.hero-images img {
    border-radius: 20px;
    object-fit: contain;
}

.hero-img-1 {
    margin-left: auto;
    width: 497px;
}

.hero-img-2 {
    margin-right: auto;
    margin-top: -160px;
    width: 414px;
}

@media (max-width: 1280px) {
    .hero-content::before {
        background-position:
            25px 24px,
            54.5% 9px,
            35% 76%;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        padding-top: 270px;
    }

    .hero-content {
        gap: 32px;
    }

    .hero-text h1 {
        font-size: 50px;
        line-height: normal;
        letter-spacing: normal;
    }

    .hero-images {
        margin-top: -55px;
        min-width: 430px;
        width: 430px;
    }

    .hero-img-1 {
        width: 385px;
        height: auto;
    }

    .hero-img-2 {
        width: 270px;
        margin-top: -125px;
        height: auto
    }
}

@media (max-width: 850px) {
    .hero-container {
        padding-top: 155px;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .hero-content::before {
        background-position:
            25px 44px,
            75% 35%,
            45% 30%;
    }

    .hero-images {
        margin-top: 0px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-content::before {
        background-size:
            60px auto,
            80px auto,
            100px auto;
        background-position:
            25px 44px,
            75% 30%,
            45% 27%;
    }

    .hero-text {
        gap: 24px;
    }

    .hero-text h1 {
        font-size: 40px;
        line-height: 30px;
    }

    .hero-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-btn {
        font-size: 16px;
        line-height: 24px;
        padding: 6px 8px 6px 16px;
    }

    .hero-btn-icon {
        width: 36px;
        height: 36px;
        margin-left: 10px;
    }

    .hero-img-1 {
        width: 385px;
        height: auto;
    }

    .hero-img-2 {
        width: 270px;
        margin-top: -125px;
        height: auto
    }

    .hero-bg-wrapper {
        height: 900px;
        background-position: right;
    }
}

@media (max-width: 475px) {
    .hero-content::before {
        background-position:
            25px 44px,
            90% 53%,
            16% 67%;
    }

    .hero-text {
        gap: 18px;
    }

    .hero-text h1 {
        font-size: 37px;
        line-height: normal;
    }

    .hero-images {
        min-width: 310px;
        width: 310px;
        height: auto;
    }

    .hero-images img {
        border-radius: 12px;
    }

    .hero-img-1 {
        width: 280px;
        height: auto;
    }

    .hero-img-2 {
        width: 210px;
        margin-top: -90px;
        height: auto
    }

    .hero-bg-wrapper {
        height: 800px;
    }
}

@media (max-width: 350px) {

    .hero-images {
        min-width: 278px;
        width: 278px;
        height: auto;
    }

    .hero-images img {
        border-radius: 12px;
    }

    .hero-img-1 {
        width: 260px;
        height: auto;
    }

    .hero-img-2 {
        width: 190px;
        margin-top: -90px;
        height: auto
    }
}

/* Our Programs & Services */
.our-programs-servicers-container {
    padding: 80px 20px;
    width: 100%;
}

.our-programs-servicers-container .title {
    color: #2D2D2D;
    font-size: 46px;
    line-height: 57px;
    font-weight: 600;
    text-align: center;
    font-family: 'Clash Display', sans-serif;
}

.cards-container {
    width: 100%;
    max-width: 1240px;
    margin: auto;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cards-container .card {
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    border-radius: 30px;
    padding: 30px 20px 20px;
    display: flex;
    text-align: center;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
}

.cards-container .card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.cards-container .card .card-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cards-container .card h3 {
    margin-top: 20px;
    font-size: 23px;
    font-weight: 500;
    line-height: 28px;
}

.cards-container .card p {
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

.cards-container .card:hover {
    background: linear-gradient(180deg, #2e5f47 0%, #b0b344 100%);
    transform: translateY(-4px);
}

@media (max-width: 950px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .cards-container {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 20px;
    }

    .cards-container .card h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .cards-container .card p {
        margin-top: 10px;
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 24px;
    }

    .our-programs-servicers-container .title {
        font-size: 30px;
        line-height: 38px;
    }
}

/* Why Choose */
.why-choose-container {
    width: 100%;
    overflow: visible;
    padding: 0 20px;
}

.why-choose-content-container {
    position: relative;
    width: 100%;
    max-width: 1240px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    gap: 20px;
}

.star-icon-why-choose {
    position: absolute;
    top: -20px;
    left: -90px;
    z-index: 10;
}

.gradient-border-wrapper {
    padding: 5px;
    background: linear-gradient(180deg, rgba(217, 48, 91, 0.6) 0%, rgba(208, 211, 112, 0) 100%);
    border-radius: 25px;
    display: inline-block;
}

.gradient-border-wrapper img {
    position: relative;
    z-index: 15;
    object-fit: cover;
    max-width: 553px;
    height: 573px;
    width: 100%;
    border-radius: 20px;
    display: block;
}

.why-choose-content-container .why-choose-content {
    max-width: 614px;
}

.why-choose-content-container .why-choose-content h1 {
    font-family: 'Clash Display', sans-serif;
    color: #2D2D2D;
    font-size: 46px;
    line-height: 57px;
    font-weight: 600;
}

.why-choose-content-container .why-choose-content p {
    color: #666666;
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
    margin: 20px 0px;
}

.why-choose-content-container .why-choose-content .faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-container-card {
    border-radius: 25px;
    padding: 1px;
    background: linear-gradient(180deg, #D9305B 0%, #7E2784 100%);
}

.faq-container-card>div {
    border-radius: 23px;
    padding: 10px 20px;
    background: white;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.faq-container .faq-container-card .faq-container-card-content {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.faq-container .faq-container-card .faq-container-card-content h3 {
    color: #2D2D2D;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
}

.faq-container .faq-container-card .faq-container-card-content p {
    margin-top: 6px;
    color: #666666;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-container-card.active .faq-container-card-content p {
    max-height: 200px;
    opacity: 1;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-container-card>img {
    margin-left: 10px;
}

@media (max-width: 900px) {
    .why-choose-content-container {
        flex-direction: column;
    }

    .gradient-border-wrapper img {
        height: auto;
        border-radius: 12px;
    }

    .why-choose-content-container .why-choose-content {
        max-width: 100%;
    }

    .why-choose-content-container .why-choose-content h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .why-choose-content-container .why-choose-content p {
        margin: 15px 0px;
    }

    .gradient-border-wrapper {
        border-radius: 15px;
    }

    .why-choose-container {
        padding: 40px 20px 0px;
    }
}

@media (max-width: 900px) {
    .why-choose-content-container .why-choose-content h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .star-icon-why-choose {
        top: -59px;
        left: -64px;
    }

    .faq-container-card>div {
        border-radius: 15px;
        padding: 14px 14px;
    }

    .faq-container-card {
        border-radius: 16px;
    }

    .faq-container .faq-container-card .faq-container-card-content h3 {
        font-size: 16px;
        line-height: 22px;
    }

    .faq-container .faq-container-card .faq-container-card-content p {
        font-size: 16px;
        margin-top: 6px;
        line-height: 20px;
    }
}


/* How Our Program Works */
.program-works-bg-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}


.program-works-bg-wrapper::before {
    content: "";
    position: absolute;
    top: -90px;
    left: 0;
    width: 100%;
    height: 323px;
    background: url('./assets/wave-top.png') repeat-x top center;
    background-size: cover;
    z-index: 5;
    pointer-events: none;
}

.program-works-bg-wrapper::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: 0;
    width: 100%;
    height: 323px;
    background: url('./assets/wave-bottom-large.png') no-repeat bottom center;
    background-size: cover;
    z-index: 5;
    pointer-events: none;
}

.star-decor {
    position: absolute;
    top: 50px;
    right: 30px;
    width: 72px;
    height: 61px;
    z-index: 6;
    pointer-events: none;
}

.program-works {
    position: relative;
    background: url('./assets/program-works-img.webp') no-repeat center center;
    background-size: cover;
    background-position: center 20%;
    padding: 200px 0;
    color: white;
    z-index: 3;
    overflow: hidden;
    border-top: 4px solid #D9E6FF;
    border-bottom: 4px solid #D9E6FF;
}

/* Gradient overlay */
.program-works::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #D9305B 14.3%, #7E2784 79.66%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}

.program-works::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 541.49px;
    background: url('./assets/shade.svg') no-repeat center center;
    background-size: cover;
    z-index: 5;
    pointer-events: none;
    opacity: 0.9;
}


.program-works-container {
    max-width: 1238px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 4;
}

.program-works-container .section-title {
    color: #fff;
    font-size: 46px;
    line-height: 57px;
    font-weight: 600;
    text-align: center;
    font-family: 'Clash Display', sans-serif;
    padding-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: start;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.step-number {
    position: relative;
    width: 73px;
    height: 73px;
    border-radius: 50%;
    border: 4.38px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Clash Display', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 100%;
    color: white;
    overflow: hidden;
    z-index: 0;
}

.step-number::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    z-index: -1;
}

.step-number::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4.38px solid rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0%;
}

.step-description {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .program-works-bg-wrapper::before {
        content: "";
        position: absolute;
        top: -90px;
        left: 0;
        width: 100%;
        height: 180px;
        background: url('./assets/wave-top.png') no-repeat top center;
        background-size: cover;
        z-index: 5;
        pointer-events: none;
    }

    .program-works-bg-wrapper::after {
        content: "";
        position: absolute;
        bottom: -90px;
        left: 0;
        width: 100%;
        height: 180px;
        background: url('./assets/wave-bottom.png') no-repeat bottom center;
        background-size: cover;
        z-index: 5;
        pointer-events: none;
    }

    .star-decor {
        position: absolute;
        top: 00px;
        right: 10px;
        width: 60px;
        z-index: 6;
        pointer-events: none;
    }

    .program-works {
        padding: 70px 0;
    }

    .program-works-container .section-title {
        font-size: 30px;
        line-height: 38px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 34px;
    }

    .step-title {
        font-size: 22px;
    }

    .step-description {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Apply Now */
.apply-now {
    width: 100%;
    margin: auto;
    max-width: 1440px;
    padding: 120px 20px 110px 20px;
    position: relative;
}

.apply-now .star-icon {
    position: absolute;
    bottom: 30px;
    right: 0;
}

.apply-now-container {
    position: relative;
    border-radius: 30px;
    width: 100%;
    overflow: hidden;
    max-width: 1240px;
    margin: auto;
    background: linear-gradient(92.86deg, #387858 -5.3%, #D0D370 104.5%);
}

.apply-now-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/apply-now-bg-lines.webp') no-repeat center/cover;
    z-index: 0;
    pointer-events: none;
    border-radius: 30px;
}

.apply-now-container>*:not(.apply-now-bg) {
    position: relative;
    z-index: 1;
}

.apply-now-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 56px 54px;
    position: relative;
    z-index: 1;
}

.apply-now-text h2 {
    font-family: 'Clash Display', sans-serif;
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    line-height: 57px;
    margin-bottom: 25px;
}

.apply-now-text p {
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    max-width: 583px;
}

.apply-now-btn {
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    white-space: nowrap;
    display: flex;
    align-items: center;
    background: #fff;
    border: none;
    color: #2D2D2D;
    font-weight: 700;
    font-size: 18px;
    border-radius: 999px;
    padding: 10px 10px 10px 20px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(56, 120, 88, 0.08);
    transition: background 0.5s, color 0.5s;
    position: relative;
}

.apply-now-btn:hover {
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    color: #fff;
}

.apply-now-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    color: #fff;
    transition: background 0.5s;
}

.apply-now-btn:hover .apply-now-btn-icon {
    background: linear-gradient(180deg, #D9305B 0%, #7E2784 100%);
    color: #fff;
}

@media (max-width: 850px) {
    .apply-now {
        padding: 60px 20px 80px 20px;
    }

    .apply-now-container {
        border-radius: 20px;
    }

    .apply-now-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 30px;
        gap: 30px;
    }

    .apply-now-btn {
        align-self: flex-end;
    }

    .apply-now .star-icon {
        bottom: 10px;
    }
}

@media (max-width: 640px) {
    .apply-now-content {
        padding: 25px 20px;
        gap: 20px;
    }

    .apply-now-text h2 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 18px;
    }

    .apply-now-text p {
        font-size: 16px;
        line-height: 20px;
    }

    .apply-now-btn {
        line-height: 20px;
        font-size: 16px;
    }

    .apply-now-btn-icon {
        width: 30px;
        height: 30px;
    }
}

/* Footer */
.footer-container {
    padding: 28px 28px;
    background: linear-gradient(180deg, #D9305B 0%, #7E2784 100%);
}

.footer-container .footer-links-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.footer-container .footer-links-container .footer-link {
    list-style: none;
}

.footer-container .footer-links-container .footer-link button {
    text-decoration: none;
    background: none;
    color: white;
    font-family: "DM Sans", sans-serif;
    cursor: pointer;
    border: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
}

@media screen and (max-width: 640px) {
    .footer-container .footer-links-container {
        gap: 16px;
    }

    .footer-container .footer-links-container .footer-link button {
        font-size: 16px;
        line-height: 20px;
    }
}

/* ========================================
   MODAL STYLES - ALL MODALS GROUPED TOGETHER
   ======================================== */

/* Base Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: 30px;
    max-width: 1240px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0px 4px 30px 0px #D9305B99;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal::-webkit-scrollbar {
    display: none;
}

.close-modal-sticky {
    width: 100%;
    background: white;
    z-index: 2;
    position: sticky;
    top: 0;
    right: 0;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    text-align: center;
}

.modal-header h2 {
    font-family: 'Clash Display', sans-serif !important;
    font-size: 46px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 10px;
}

.modal-header p {
    color: #666666;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    background: white !important;
    right: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    background: transparent;
    transition: transform 0.2s ease;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-content {
    width: 100%;
    margin: auto;
    padding: 0px 20px 40px 20px;
}

/* ========================================
   KIVA LENDER REWARDS MODAL
   ======================================== */
.rewards-modal {
    max-width: 1240px;
    width: 95%;
    padding: 0;
    border-radius: 30px;
    background: white;
    box-shadow: 0px 4px 30px 0px #D9305B99;
    overflow-y: auto;
    max-height: 90vh;
}

.rewards-header {
    padding: 100px 50px 34px 50px;
    margin-bottom: 0;
    border-bottom: none;
    background: white;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.rewards-header h2 {
    color: #2D2D2D;
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Clash Display', sans-serif;
}

.rewards-header p {
    color: #666666;
    font-size: 16px;
    line-height: 20px;
    opacity: 1;
    margin-bottom: 0;
    font-weight: 500;
}

.rewards-container {
    width: 100%;
    max-width: 1132px;
    margin: auto;
    background-color: #EFEFEF;
    border-radius: 20px;
    overflow-x: auto;
    /* Show scrollbar */
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

.rewards-container::-webkit-scrollbar {
    display: block;
    height: 8px;
}

.rewards-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.rewards-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D9305B 0%, #7E2784 100%);
    border-radius: 4px;
}

.rewards-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b8254a 0%, #6a1f6f 100%);
}

.rewards-table-scroll {
    min-width: 500px;
    /* Show scrollbar */
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

.rewards-table-scroll::-webkit-scrollbar {
    display: block;
    height: 8px;
}

.rewards-table-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.rewards-table-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D9305B 0%, #7E2784 100%);
    border-radius: 4px;
}

.rewards-table-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b8254a 0%, #6a1f6f 100%);
}

.rewards-table-header {
    display: grid;
    grid-template-columns: 0.8fr .6fr 1.6fr;
    gap: 20px;
    padding: 26px 40px;
    background: linear-gradient(180deg, #D9305B 0%, #7E2784 100%);
    border-radius: 20px;
    margin-bottom: 0;
}

.rewards-table-header .header-item {
    color: white;
    font-weight: 600;
    font-size: 25px;
    line-height: 20px;
    text-align: left;
    padding: 0;
    margin: 0;
}

.header-item {
    padding: 20px 15px;
    text-align: left;
}

.header-item.amount {
    text-align: left;
}

.header-item.benefits {
    text-align: left;
}

.rewards-item {
    display: grid;
    grid-template-columns: 0.8fr .6fr 1.6fr;
    gap: 20px;
    padding: 24px 40px;
    border-bottom: 1px solid #C5C5C5;
    transition: background-color 0.2s ease;
    align-items: start;
}

.rewards-item:last-child {
    border-bottom: none;
    border-radius: 0 0 20px 20px;
}

.item-tier {
    font-size: 18px;
    color: #2D2D2D;
    line-height: 20px;
    font-weight: 700;
    text-align: left;
}

.item-amount {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    line-height: 20px;
    background: linear-gradient(180deg, #D9305B 0%, #7E2784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.item-benefits {
    font-size: 18px;
    line-height: 20px;
    color: #666666;
    font-weight: 400;
    text-align: left;
}

@media (max-width: 1024px) {
    .modal-close {
        top: 10px;
        right: 10px;
    }

    .rewards-header h2 {
        font-size: 30px;
    }

    .rewards-header {
        padding: 70px 20px 25px 20px;
    }

    .modal-close img {
        background: white;
        border-radius: 100%;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 700px) {
    .rewards-item {
        padding: 16px 12px;
    }

    .rewards-table-header {
        padding: 22px 20px;
    }

    .rewards-table-header .header-item {
        font-size: 20px;
    }

    .item-tier {
        line-height: 14px;
        font-size: 12px;
    }

    .item-amount {
        line-height: 14px;
        font-size: 12px;
    }

    .item-benefits {
        line-height: 14px;
        font-size: 12px;
    }

    .rewards-item {
        gap: 14px;
    }

    .rewards-table-header {
        gap: 14px;
    }

    .rewards-modal {
        border-radius: 20px;
    }
}

@media (max-width: 500px) {
    .rewards-header h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .rewards-header p {
        font-size: 14px;
        line-height: 18px;
        opacity: 1;
        margin-bottom: 0;
        font-weight: 500;
    }

    .rewards-header {
        padding: 70px 20px 20px 20px;
    }

    .rewards-container {
        overflow-x: auto;
        width: 100%;
    }

    .rewards-table-scroll {
        min-width: 500px;
    }

    .modal-close img {
        width: 35px;
        height: 35px;
    }

    .rewards-table-header .header-item {
        font-size: 14px;
    }

    .rewards-header {
        padding: 60px 20px 20px 20px;
    }

    .rewards-header h2 {
        font-size: 18px;
    }

    .rewards-container {
        border-radius: 12px;
    }

    .rewards-table-header {
        border-radius: 12px;
    }

    .rewards-table-header {
        padding: 12px 14px;
    }

    .modal-content {
        padding: 0px 14px 20px 14px;
    }


}

/* ========================================
   TERMS OF USE MODAL
   ======================================== */
.terms-header {
    padding: 81px 20px 71px 20px;
}

.terms-header h2 {
    color: #2D2D2D;
    font-size: 46px;
    font-weight: 700;
    line-height: 57px;
    margin-bottom: 0;
}

.terms-content {
    max-width: 1165px;
    margin: auto;
    width: 100%;
}

.terms-section {
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #CACACA;
}

.terms-section:last-child {
    padding-bottom: 0px;
    margin-bottom: 40px;
    border-bottom: 1px solid transparent;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h3 {
    font-size: 36px;
    line-height: 47px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 15px;
}

.terms-section h3 span {
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* For Firefox */
    color: transparent;
    /* Fallback */
}


.terms-section p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #666666;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-section-list {
    background: linear-gradient(180deg, rgba(56, 120, 88, 0.05) 0%, rgba(208, 211, 112, 0.05) 100%);
    padding: 20px;
    border-radius: 20px;
    border-bottom: none;
}

.terms-section-list-heading {
    font-size: 22px;
    line-height: 30px;
    color: #666666;
    font-weight: 500;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0px 0px 0px;
}

.terms-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    color: #666666;
}

.terms-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 17.68px;
    background-image: url('/assets/arrow-checkbox.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.disclaimer-bold {
    font-weight: 700 !important;
    color: #2D2D2D !important;
}

@media (max-width: 1024px) {
    .terms-header {
        padding: 40px 20px 30px 20px;
    }
}

@media (max-width: 1024px) {
    .modal {
        border-radius: 20px;
    }

    .terms-header h2 {
        font-size: 26px;
        font-weight: 600;
        line-height: 26px;
    }

    .terms-section h3 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 8px;
    }

    .terms-section p {
        font-size: 14px;
        line-height: 20px;
    }

    .terms-section {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .terms-section-list {
        padding: 12px;
        border-radius: 12px;
    }

    .terms-section-list-heading {
        font-size: 14px;
        line-height: 20px;
    }

    .terms-list li::before {
        width: 15px;
        top: 2px;
        height: 16.68px;
    }

    .terms-list li {
        padding-left: 20px;
        margin-bottom: 4px;
        font-size: 14px;
        line-height: 20px;
    }

    .terms-list {
        margin: 10px 0px 0px 0px;
    }
}

/* ========================================
   COOKIE POLICY MODAL
   ======================================== */
.cookie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cookie-grid>*:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
}

.cookie-card {
    background: linear-gradient(180deg, rgba(56, 120, 88, 0.1) 0%, rgba(208, 211, 112, 0.1) 100%);
    border-radius: 20px;
    padding: 20px;
}

.cookie-card h4 {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    line-height: 30px;
}

.cookie-card p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #666666;
    margin: 0;
}

.cookie-card h3 {
    margin-top: 15px;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: #2D2D2D;
}

.cookie-card h3 a {
    font-weight: 500;
    color: #2D2D2D;
    font-size: 18px;
    line-height: 30px;
    text-decoration: underline;
    word-break: break-all;
}

.cookie-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.cookie-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    color: #666666;
}

.cookie-list li span {
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
}

.managing-cookies-heading {
    color: #2D2D2D;
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}


.cookie-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 17.68px;
    height: 17.68px;
    background-image: url('/assets/circle-gradient.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.cookie-list li:last-child {
    margin-bottom: 0;
}

.cookie-section-list {
    background: linear-gradient(180deg, rgba(56, 120, 88, 0.05) 0%, rgba(208, 211, 112, 0.05) 100%);
    padding: 20px;
    border-radius: 20px;
    border: none;
}

.type-cookie-section-list {
    border: none;
    padding: 0px;
}

.third-party-heading {
    color: #2D2D2D;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
}

.contact-details {
    margin: 8px 0px 10px 0px;
    font-size: 22px;
    font-weight: 600;
}

.company {
    font-size: 18px;
    font-weight: 400;
}

.email {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 400;
}

.resp-time {
    font-size: 20px;
    font-weight: 400;
}


/* ========================================
   PRIVACY POLICY MODAL
   ======================================== */

.card-privay {
    background: linear-gradient(180deg, rgba(56, 120, 88, 0.1) 0%, rgba(208, 211, 112, 0.1) 100%);
    padding: 20px;
    border-radius: 20px;
}

.card-privay h5 {
    color: #2D2D2D;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
}

.card-privay:last-child {
    margin-top: 20px;
}

.personal-info-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.personal-info-card>div p {
    font-weight: 500;
    color: #2D2D2D;
}

.share-your-info-heading {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #666666;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.automatically-collected-info-para {
    font-weight: 500 !important;
    color: #2D2D2D !important;
}

.privacy-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #666666;
}

.privacy-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    background-image: url('/assets/circle-gradient.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.your-info-heading {
    font-size: 18px;
    line-height: 30px;
    color: #2D2D2D;
    font-weight: 500;
}

.info-detail {
    max-width: 538px;
    width: 100%;
    margin-top: 20px;
}

.info-detail-heading {
    color: #2D2D2D;
    font-size: 22px;
    line-height: 29px;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-detail-para {
    color: #2D2D2D;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
}

/* ========================================
   CONTACT INFORMATION MODAL
   ======================================== */
.contact-modal {
    max-width: 800px;
    max-height: 85vh;
    max-width: 700px;
    width: 90%;
    padding: 35px;
    border-radius: 18px;
    position: relative;
}


.contact-header {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(208, 211, 112, 0.1) 0%, rgba(56, 120, 88, 0.1) 100%);
    border-radius: 15px;
    padding: 22px 28px;
    margin: -35px -35px 25px -35px;
}

.contact-header h2 {
    color: #D0D370;
    font-size: 26px;
    margin-bottom: 8px;
}

.contact-header p {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0;
}

.last-update {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 400;
}

.contact-content {
    max-width: 1140px;
    width: 100%;
    margin: auto;
    padding: 0px 0px 40px 0px;
    padding: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    background: linear-gradient(180deg, #D9305B 0%, #7E2784 100%);
    border-radius: 12px;
    padding: 25px;
    color: white;
}

.contact-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 24px;
}

.contact-info p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
    color: white;
}

.email-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.email-item svg {
    flex-shrink: 0;
}

.email-item span {
    font-size: 14px;
    line-height: 20px;
    color: white;
    word-break: break-all;
}

.response-time {
    text-align: center;
    margin-top: 20px;
}

.response-time p {
    font-size: 14px;
    line-height: 20px;
    color: #666666;
    margin: 0;
}
.call-me{
    text-decoration: none;
    color: black;
}

/* ========================================
   PERSONAL INFORMATION MODAL
   ======================================== */
.personal-info-modal {
    max-width: 1200px;
    max-height: 90vh;
    box-shadow: 0px 0px 60px 30px #00000008;
    width: 95%;
    padding: 40px 20px;
    border-radius: 30px;
    overflow-y: scroll;
}


.per-info-modal-close {
    position: absolute;
    top: -20px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: white;
    transition: transform 0.2s ease;

}

.per-info-modal-close:hover {
    transform: scale(1.1);
}

.per-info-modal-close .close-modal-icon {
    width: 40px;
    background: white;
    height: 40px;
    border-radius: 100%;
}

.personal-info-layout {
    display: flex;
    max-width: 1100px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: auto;
}

.personal-info-image {
    max-width: 454px;
    width: 100%;
    height: -webkit-fill-available;
}

.personal-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.personal-info-form {
    max-width: 595px;
    height: -webkit-fill-available;
    width: 100%;
    background: white;
}

.personal-info-form h1 {
    color: #2D2D2D;
    font-size: 30px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 26px;
}

.info-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #2D2D2D;
}

.required {
    color: #FF0000;
    font-weight: 700;
}

.form-group input,
.form-group select {
    border: none;
    border-bottom: 2px solid #bdbdbd;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 8px 0 8px 0;
    font-size: 16px;
    color: #2D2D2D;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-bottom: 2px solid #FF0000;
    outline: none;
    background: transparent;
}

.form-group input::placeholder {
    color: #8D8D8D;
    opacity: 1;
    font-size: 16px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #2D2D2D;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent url('assets/dropdown-arrow.svg') no-repeat right 0px center/14px;
    padding-right: 32px;
    cursor: pointer;
    color: #2D2D2D;
}

.form-group select:focus {
    background-color: transparent;
    border-bottom: 2px solid #D9305B;
}

.submit-btn {
    width: fit-content;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    white-space: nowrap;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #D9305B 0%, #7E2784 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 20px;
    border-radius: 999px;
    padding: 12px 10px 12px 30px;
    text-decoration: none;
    margin-top: 11px;
    box-shadow: 0 2px 8px rgba(56, 120, 88, 0.08);
    transition: background 0.5s, color 0.5s;
    position: relative;
}

.submit-btn:hover {
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    color: white;
}

.submit-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #387858 0%, #D0D370 100%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 15px;
    color: #fff;
    transition: background 0.5s;
}

.submit-btn:hover .submit-btn-icon {
    background: linear-gradient(180deg, #D9305B 0%, #7E2784 100%);
    color: white;
}

.submit-btn:disabled {
    background: linear-gradient(180deg, #888888 0%, #666666 100%);
    cursor: not-allowed;
    opacity: 0.7;
}

.submit-btn:disabled:hover {
    background: linear-gradient(180deg, #888888 0%, #666666 100%);
}

.submit-btn:disabled .submit-btn-icon {
    background: linear-gradient(180deg, #666666 0%, #444444 100%);
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .personal-info-form {
        padding: 0 8px;
    }

    .personal-info-image {
        display: none;
    }

    .personal-info-modal {
        padding: 22px 10px;
        border-radius: 20px;
    }

    .per-info-modal-close {
        top: -10px;
    }

    .personal-info-form h1 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .submit-btn {
        padding: 9px 10px 9px 22px;
    }

    .submit-btn-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 600px) {
    .personal-info-card {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .card-privay {
        padding: 16px;
        border-radius: 12px;
    }

    .card-privay h5 {
        margin-bottom: 6px;
        font-size: 15px;
        line-height: 20px;
    }

    .privacy-list {
        margin: 8px 0;
    }

    .privacy-list li {
        padding-left: 20px;
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 20px;
    }

    .privacy-list li:before {
        top: 3px;
    }

    .card-privay:last-child {
        margin-top: 12px;
    }

    .your-info-heading {
        font-size: 14px;
        line-height: 20px;
    }

    .info-detail {
        margin-top: 8px;
    }

    .info-detail-heading {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 4px;
    }

    .info-detail-para {
        font-size: 14px;
        line-height: 20px;
    }

    .cookie-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cookie-grid>*:nth-last-child(1):nth-child(odd) {
        grid-column: span 1;
    }

    .share-your-info-heading {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .cookie-card {
        border-radius: 12px;
        padding: 12px;
    }

    .cookie-card h4 {
        font-size: 16px;
        margin-bottom: 4px;
        line-height: 24px;
    }

    .cookie-card p {
        font-size: 14px;
        line-height: 20px;
    }

    .third-party-heading {
        font-size: 14px;
        line-height: 20px;
        font-weight: 600;
    }

    .cookie-section-list {
        padding: 12px;
        border-radius: 12px;
    }

    .cookie-list {
        margin: 10px 0 0 0;
    }

    .cookie-list li {
        padding-left: 16px;
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 20px;
    }

    .cookie-list li::before {
        top: 3px;
        width: 13px;
        height: 13px;
    }

    .cookie-list li span {
        font-size: 16px;
        line-height: 16px;
    }

    .managing-cookies-heading {
        font-size: 14px;
        line-height: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .cookie-card h3 {
        margin-top: 8px;
        font-size: 14px;
        line-height: 20px;
    }

    .cookie-card h3 a {
        font-size: 14px;
        line-height: 20px;
    }

}

@media (max-width: 1024px) {
    .rewards-btn-icon {
        width: 36px;
        height: 36px;
        margin-left: 10px;
    }

    .rewards-btn {
        font-size: 16px;
        padding: 6px 8px 6px 16px;
    }
}


@media (max-width: 600px) {
    .rewards-btn-icon {
        width: 36px;
        height: 36px;
        margin-left: 10px;
    }

    .rewards-btn {
        display: none;
    }

    .mobile-rewards-btn {
        display: flex;
        width: fit-content;
    }
}