@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
    --surface-black: #14171a;
    --surface-black-dark: #111113;
    --surface-green: #089959;
    --text-black: #191c1e;
    --text-white: #fffffe;
    --text-white-20: #c0c2c6;
    --text-grey-medium: #757778;
    --text-grey-dark: #47494d;
    --text-green: #089958;
    --tertiary-grey: #f5f7f9;
    --tertiary-green: #E9FBEC;
    --surface-grey-separator: #efefef;
    --border-grey: #f2f4f7;
}

/* Page-specific styles */
.rbi-disclaimer-title {
    font-family: 'Basier Circle', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 56px;
    line-height: 100%;
    letter-spacing: -1.5px;
    text-align: center;
    margin: 0;
}

.rbi-disclaimer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.rbi-disclaimer-text {
    font-family: 'Basier Circle', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0px;
    color: var(--text-grey-medium);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: white;
    color: var(--text-black);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    margin: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    position: absolute;
    top: 29px;
    left: 50%;
    transform: translateX(-50%);
    width: 607px;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    background: rgba(247, 247, 247, 0.9);
    backdrop-filter: blur(2px);
    border: 1px solid var(--surface-grey-separator);
    border-radius: 20px;
    z-index: 100;
}

.logo {
    height: 50px;
    width: 75px;
    position: relative;
}

.logo img {
    height: 100%;
    width: auto;
}

.btn-primary {
    background: var(--surface-black);
    color: var(--text-white);
    border: none;
    border-radius: 12px;
    padding: 16px 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
    box-sizing: border-box;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    position: relative;
    width: 637px;
    max-width: 90%;
    margin: 0 auto;
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    z-index: 10;
}

.hero-image-container {
    width: 283px;
    height: 207px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -20px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    color: var(--text-black);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-title .regular {
    font-weight: 400;
    font-size: 48px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-grey-medium);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.btn-large {
    background: var(--surface-black);
    color: var(--text-white);
    border: none;
    border-radius: 18px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    /* width: 100%; */
    max-width: 400px;
    transition: opacity 0.2s;
}

.btn-large:hover {
    opacity: 0.9;
}

.disclaimer {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 0 16px;
}

.disclaimer-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-green);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.disclaimer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51.5px;
    height: 12px;
    position: relative;
}

/* Decorative Images */
.decorative-image {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.decor-1 {
    left: calc(50% + 512.57px);
    top: -19.06px;
    width: 233.741px;
    height: 237.134px;
    /* transform: rotate(253.032deg); */
    /* filter: blur(3.5px); */
}


.decor-3 {
    left: calc(50% + 319.31px);
    top: 442.22px;
    width: 180.83px;
    height: 181.91px;
    /* transform: rotate(57.407deg); */
    /* filter: blur(1.5px); */
}

.decor-4 {
    left: calc(50% - 408.14px);
    top: 168.42px;
    width: 110.644px;
    height: 111.596px;
    /* transform: rotate(297.449deg); */
    /* filter: blur(4px); */
}

.decor-5 {
    left: calc(50% - 770px);
    top: 346.6px;
    width: 278.253px;
    height: 275.922px;
    /* transform: rotate(332.272deg); */
    filter: blur(3.5px);
}

/* Main Content */
.main-content {
    margin: 0 auto;
    margin-bottom: 0;
    padding-top: 100px;
    width: 1000px;
    max-width: 95%;
    display: flex;
    flex-direction: column;
    gap: 150px;
    align-items: flex-end;
}

/* Main Content for RBI Disclaimer and similar pages */
.rbi-disclaimer-page .main-content {
    padding: 150px 0 100px;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

/* Section Styles */
.section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.section-header {
    text-align: center;
    max-width: 637px;
    width: 100%;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-black);
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.section-description {
    font-size: 16px;
    color: var(--text-grey-medium);
}

/* Interest Rate Cards */
.rate-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 1000px;
}

.rate-card {
    background: var(--tertiary-grey);
    backdrop-filter: blur(28px);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 130px;
}

.rate-card.highlighted {
    background: radial-gradient(ellipse 424.39% 1034.99% at 26.39% -240.94%, white 0%, var(--tertiary-green) 100%);
    border: 1px solid rgba(8, 153, 88, 0.10);
    outline: 1px solid rgba(8, 153, 88, 0.10);
    outline-offset: -1px;
}

.rate-card-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-grey-dark);
}

.rate-card.highlighted .rate-card-title {
    color: var(--text-grey-dark);
}

.rate-card.highlighted .rate-card-title strong {
    color: var(--text-green);
    font-weight: 600;
}

.rate-value {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 37px;
    /* justify-content: center; */
    /* align-items: flex-end; */
}

.rate-number {
    font-size: 36px;
    font-weight: 500;
    color: var(--text-black);
    text-align: end;
    line-height: 1;
    display: block;
}

.rate-card.highlighted .rate-number {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-green);
    height: 47px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.rate-label {
    font-size: 14px;
    color: var(--text-grey-medium);
}

.rate-card.highlighted .rate-label {
    color: var(--text-green);
}

/* Benefit Cards */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.benefit-card {
    background: var(--tertiary-grey);
    backdrop-filter: blur(28px);
    border-radius: 20px;
    padding: 32px 40px;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.benefit-content {
    position: relative;
    z-index: 1;
    max-width: 65%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 8px;
}

.benefit-description {
    font-size: 16px;
    color: var(--text-grey-medium);
}

.benefit-image {
    position: absolute;
    right: 10px;
    bottom: 0;
    mix-blend-mode: multiply;
    max-width: 40%;
    height: auto;
    z-index: 0;
}

/* Steps Section */
.steps-container {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
}

.steps-header {
    flex: 0 0 45%;
    min-width: 240px;
}

.steps-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-black);
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.steps-title .green {
    color: var(--text-green);
}

.steps-subtitle {
    font-size: 24px;
    color: var(--text-grey-medium);
    letter-spacing: -1px;
}

.steps-list {
    flex: 0 0 55%;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-card {
    background: var(--tertiary-grey);
    border-radius: 20px;
    padding: 24px 20px 24px 84px;
    display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 72px;
    font-weight: 500;
    color: var(--text-white-20);
    opacity: 0.4;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: 8px;
}

.step-description {
    font-size: 16px;
    color: var(--text-grey-medium);
}

.step-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.step-icon.lock {
    background: var(--surface-green);
    border-radius: 62.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 80px;
}

.faq-item {
    background: white;
    border-bottom: 1px solid var(--border-grey);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    transition: background 0.2s;
}

/* .faq-item:hover {
    background: #fafafa;
} */

.faq-item.open {
    padding-bottom: 32px;
}

.faq-question {
    flex: 1;
    max-width: 600px;
    min-width: 0;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-black);
}

.faq-answer {
    font-size: 16px;
    color: var(--text-grey-medium);
    margin-top: 10px;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    position: relative;
}

.faq-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-icon .arrow-up {
    display: none;
}

.faq-icon .arrow-down {
    display: block;
}

.faq-item.open .faq-icon .arrow-up {
    display: block;
}

.faq-item.open .faq-icon .arrow-down {
    display: none;
}

/* Footer */
.footer {
    position: relative;
    margin-top: auto;
    width: 100%;
    min-height: 741px;
    background: var(--surface-black-dark);
    overflow: hidden;
    margin-bottom: 0;
}

.footer-content {
    position: absolute;
    top: 66px;
    left: 50%;
    transform: translateX(-50%);
    width: 1080px;
    max-width: 95%;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo {
    height: 116px;
    width: 174px;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

.btn-outline {
    background: transparent;
    color: var(--text-white-20);
    border: 1px solid var(--text-grey-medium);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    color: var(--text-white);
    border-color: var(--text-white-20);
}

/* Footer Get the App button with gradient */
.footer .btn-outline {
    background: linear-gradient(180deg, #F7F7F7 0%, #919191 100%);
    color: #191c1e;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer .btn-outline:hover {
    background: linear-gradient(180deg, #E8E8E8 0%, #808080 100%);
    color: #191c1e;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.footer-body {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-column.wide {
    width: 401px;
}

.footer-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-grey-medium);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-text {
    font-size: 14px;
    color: var(--text-white-20);
}

.footer-link {
    font-size: 14px;
    color: var(--text-white-20);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--text-white);
}

.footer-contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-grey-medium);
    line-height: 1.5;
}

.footer-disclaimer p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive */
@media (max-width: 1400px) {}

@media (max-width: 1200px) {
    .faq-list {
        margin-bottom: 50px;
    }

    .hero {
        width: 90%;
        padding-top: 130px;
    }

    .main-content {
        width: 95%;
        padding-top: 90px;
    }

    .rbi-disclaimer-page .main-content {
        width: 95%;
        padding: 130px 0 90px;
    }

    .partners-page .main-content {
        width: 95%;
        padding-top: 0;
        padding-bottom: 0;
    }

    .partners-page .section {
        padding-top: 90px;
        padding-bottom: 60px;
    }

    .rate-cards {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .rate-card {
        min-width: auto;
    }

    .rate-card.highlighted {
        min-width: auto;
    }

    .benefit-card {
        padding: 28px 32px;
    }

    .benefit-image {
        max-width: 45%;
    }

    .decor-1 {
        width: 180px;
        height: 183px;
        left: calc(50% + 400px);
    }

    .decor-3 {
        width: 140px;
        height: 141px;
        left: calc(50% + 250px);
    }

    .decor-4 {
        width: 85px;
        height: 86px;
        left: calc(50% - 320px);
    }

    .decor-5 {
        width: 220px;
        height: 218px;
        left: calc(50% - 600px);
    }
}

@media (max-width: 1024px) {
    .decorative-image {
        display: none;
    }

    .faq-list {
        margin-bottom: 40px;
    }

    .hero {
        padding-top: 120px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 32px;
    }

    .main-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .rbi-disclaimer-page .main-content {
        padding: 120px 20px 80px;
        gap: 60px;
    }

    .partners-page .main-content {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .partners-page .section {
        padding-top: 80px;
        padding-bottom: 50px;
        gap: 48px;
    }

    .footer-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-title .regular {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .main-content {
        padding-top: 80px;
        gap: 100px;
    }

    .rate-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .rate-card {
        min-width: auto;
    }

    .rate-card.highlighted {
        min-width: auto;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        height: auto;
        min-height: 200px;
        padding: 24px 32px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .decor-1 {
        width: 120px;
        height: 122px;
        left: calc(50% + 200px);
        top: 50px;
    }

    .decor-3 {
        width: 90px;
        height: 91px;
        left: calc(50% + 150px);
        top: 300px;
    }

    .decor-4 {
        width: 60px;
        height: 61px;
        left: calc(50% - 180px);
        top: 100px;
    }

    .decor-5 {
        width: 140px;
        height: 139px;
        left: calc(50% - 300px);
        top: 250px;
    }
}

@media (max-width: 900px) {
    .rate-cards {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .rate-card {
        width: 100%;
        max-width: 400px;
        max-height: 130px;
    }

    .rate-card.highlighted {
        width: 100%;
        max-width: 400px;
        max-height: 130px;
    }
}

@media (max-width: 768px) {
    .rbi-disclaimer-title {
        font-size: 32px;
    }

    .rbi-disclaimer-text {
        font-size: 14px;
    }

    .hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .main-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .decor-1 {
        width: 80px;
        height: 81px;
        left: calc(50% + 120px);
        top: 80px;
    }

    .decor-3 {
        width: 60px;
        height: 60px;
        left: calc(50% + 100px);
        top: 350px;
    }

    .decor-4 {
        width: 40px;
        height: 40px;
        left: calc(50% - 120px);
        top: 150px;
    }

    .decor-5 {
        width: 90px;
        height: 89px;
        left: calc(50% - 180px);
        top: 300px;
    }

    .header {
        width: 95%;
        max-width: 95%;
        padding: 6px 8px;
        top: 20px;
    }

    .logo {
        height: 40px;
        width: 60px;
    }

    .btn-primary {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero {
        padding-top: 100px;
        width: 100%;
        gap: 24px;
    }

    .hero-image-container {
        width: 220px;
        height: 160px;
        margin-bottom: -10px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-title .regular {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-content {
        gap: 16px;
    }

    .hero-cta {
        gap: 24px;
    }

    .btn-large {
        padding: 14px 20px;
        font-size: 14px;
    }

    .disclaimer {
        gap: 12px;
        padding: 0 12px;
    }

    .disclaimer-text {
        font-size: 12px;
    }

    .disclaimer-icon {
        width: 40px;
        height: 10px;
    }

    .main-content {
        padding-top: 60px;
        width: 100%;
        gap: 60px;
    }

    .rbi-disclaimer-page .main-content {
        padding: 100px 16px 60px;
        width: 100%;
        gap: 60px;
    }

    .partners-page .main-content {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
    }

    .partners-page .section {
        padding-top: 70px;
        padding-bottom: 50px;
        gap: 40px;
    }

    .section {
        gap: 32px;
    }

    .section-header {
        gap: 12px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .section-description {
        font-size: 14px;
    }

    .rate-cards {
        gap: 12px;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .rate-card {
        padding: 16px;
        height: auto;
        min-height: 110px;
        max-height: 130px;
        width: 100%;
        max-width: 350px;
    }

    .rate-card.highlighted {
        width: 100%;
        max-width: 350px;
        max-height: 130px;
    }

    .rate-card-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .rate-number {
        font-size: 28px;
    }

    .rate-card.highlighted .rate-number {
        font-size: 36px;
        height: 40px;
    }

    .rate-label {
        font-size: 12px;
    }

    .benefit-card {
        padding: 20px 24px;
        height: auto;
        min-height: 180px;
    }

    .benefit-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .benefit-description {
        font-size: 14px;
    }

    .benefit-image {
        /* opacity: 0.6; */
        max-width: 50%;
        height: auto;
    }

    .benefit-card img[style*="width: 174px"] {
        width: 120px !important;
        height: auto !important;
    }

    .benefit-card img[style*="width: 216px"] {
        width: 150px !important;
        height: auto !important;
    }

    .benefit-card img[style*="width: 283px"] {
        width: 140px !important;
        height: auto !important;
        right: -20px !important;
    }

    .benefit-card img[style*="width: 289px"] {
        width: 140px !important;
        height: auto !important;
        right: -20px !important;
    }

    .steps-container {
        gap: 10px;
        align-items: center;
    }

    .steps-header {
        min-width: 100%;
    }

    .steps-title {
        font-size: 28px;
    }

    .steps-subtitle {
        font-size: 18px;
    }

    .steps-list {
        min-width: 100%;
        gap: 12px;
    }

    .step-card {
        padding: 20px 16px 20px 60px;
        overflow: hidden;
    }

    .step-number {
        left: -12px;
        font-size: 56px;
    }

    .step-card {
        overflow: hidden;
    }

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

    .step-description {
        font-size: 14px;
    }

    .step-icon {
        width: 32px;
        height: 32px;
    }

    .faq-list {
        margin-bottom: 30px;
    }

    .faq-item {
        padding: 24px 0;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .footer {
        min-height: auto;
        padding: 40px 0;
        position: relative;
    }

    .footer-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        gap: 40px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 16px;
    }

    .footer-header {
        gap: 20px;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .footer-logo {
        height: 80px;
        width: 120px;
    }

    .footer-body {
        flex-direction: column;
        gap: 40px;
    }

    .footer-column.wide {
        width: 100%;
    }

    .footer-column[style*="flex-direction: row"] {
        flex-direction: column !important;
        gap: 40px !important;
    }

    .footer-contact-item {
        flex-wrap: wrap;
    }

    .footer-contact-item p {
        word-break: break-word;
    }

    .footer-disclaimer {
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .faq-list {
        margin-bottom: 25px;
    }

    .hero {
        padding-left: 14px;
        padding-right: 14px;
    }

    .main-content {
        padding-left: 14px;
        padding-right: 14px;
    }

    .rbi-disclaimer-page .main-content {
        padding: 90px 14px 60px;
    }

    .partners-page .main-content {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 14px;
        padding-right: 14px;
    }

    .partners-page .section {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .footer-content {
        padding: 0 14px;
    }

    .rate-cards {
        gap: 10px;
        justify-items: center;
    }

    .rate-card {
        max-width: 320px;
        max-height: 130px;
    }

    .rate-card.highlighted {
        max-width: 320px;
        max-height: 130px;
    }

    .benefit-grid {
        gap: 12px;
    }

    .steps-container {
        gap: 10px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .rbi-disclaimer-title {
        font-size: 32px;
    }

    .rbi-disclaimer-text {
        font-size: 14px;
    }

    .hero {
        padding-left: 12px;
        padding-right: 12px;
    }

    .main-content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .rbi-disclaimer-page .main-content {
        padding: 80px 12px 50px;
        width: 100%;
        gap: 50px;
    }

    .partners-page .main-content {
        padding-top: 0;
        padding-bottom: 0;
        padding-left: 12px;
        padding-right: 12px;
        width: 100%;
    }

    .partners-page .section {
        padding-top: 50px;
        padding-bottom: 40px;
        gap: 32px;
    }

    .footer-content {
        padding: 0 12px;
    }

    .decor-1 {
        width: 60px;
        height: 61px;
        left: calc(50% + 80px);
        top: 100px;
    }

    .decor-3 {
        width: 45px;
        height: 45px;
        left: calc(50% + 70px);
        top: 380px;
    }

    .decor-4 {
        width: 30px;
        height: 30px;
        left: calc(50% - 90px);
        top: 180px;
    }

    .decor-5 {
        width: 70px;
        height: 69px;
        left: calc(50% - 140px);
        top: 320px;
    }

    .header {
        width: 98%;
        max-width: 98%;
        padding: 6px;
        top: 15px;
    }

    .logo {
        height: 35px;
        width: 50px;
    }

    .btn-primary {
        padding: 6px 12px;
        font-size: 11px;
    }

    .hero {
        padding-top: 80px;
        width: 100%;
        gap: 20px;
    }

    .hero-image-container {
        width: 180px;
        height: 130px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-title .regular {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .main-content {
        padding-top: 50px;
        width: 100%;
        gap: 50px;
    }

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

    .section-description {
        font-size: 13px;
    }

    .rate-card {
        padding: 14px;
        max-width: 300px;
        max-height: 130px;
    }

    .rate-card.highlighted {
        max-width: 300px;
        max-height: 130px;
    }

    .rate-card-title {
        font-size: 14px;
    }

    .rate-number {
        font-size: 24px;
    }

    .rate-card.highlighted .rate-number {
        font-size: 32px;
    }

    .benefit-card {
        padding: 18px 20px;
    }

    .benefit-title {
        font-size: 18px;
    }

    .benefit-description {
        font-size: 13px;
    }

    .steps-title {
        font-size: 24px;
    }

    .steps-subtitle {
        font-size: 16px;
    }

    .step-card {
        padding: 16px 12px 16px 50px;
        overflow: hidden;
    }

    .step-number {
        font-size: 48px;
        left: -8px;
    }

    .step-card {
        padding: 16px 12px 16px 45px;
        overflow: hidden;
    }

    .benefit-card img[style*="width: 174px"] {
        width: 80px !important;
    }

    .benefit-card img[style*="width: 216px"] {
        width: 100px !important;
    }

    .benefit-card img[style*="width: 283px"] {
        width: 110px !important;
        right: -10px !important;
    }

    .benefit-card img[style*="width: 289px"] {
        width: 110px !important;
        right: -10px !important;
    }

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

    .step-description {
        font-size: 13px;
    }

    .faq-list {
        margin-bottom: 20px;
    }

    .faq-item {
        padding: 20px 0;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .footer-contact-item {
        gap: 12px;
    }

    .footer-contact-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 20px;
    }

    .hero-title .regular {
        font-size: 18px;
    }

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

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

    .rate-number {
        font-size: 22px;
    }

    .rate-card.highlighted .rate-number {
        font-size: 28px;
    }
}

/* Partners Page Styles */
.partners-page .main-content {
    padding-top: 0;
    padding-bottom: 0;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    width: 1000px;
    max-width: 95%;
    margin: 0 auto;
    min-height: auto;
}

.partners-page .section {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 100px;
    padding-bottom: 60px;
    gap: 48px;
}

.partners-title {
    font-family: 'Basier Circle', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 56px;
    line-height: 100%;
    letter-spacing: -1.5px;
    text-align: center;
    margin: 0;
    color: var(--text-black);
}

.partners-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1000px;
    margin-top: 0;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-grey);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--surface-green);
}

.partner-logo-image {
    width: 150px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.partner-logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-black);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Partner-specific logo styles */
.partner-card[data-partner="volt"] .partner-logo {
    color: #7B2CBF;
}

.partner-card[data-partner="groww"] .partner-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.groww-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #089959 0%, #0AB169 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.groww-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.groww-name {
    color: #089959;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
}

.groww-credit {
    color: #0A66C2;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
}

.partner-card[data-partner="phonepe"] .partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phonepe-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #5F259F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
}

.phonepe-text {
    color: #5F259F;
    font-weight: 600;
    font-size: 24px;
}

.partner-card[data-partner="paytm"] .partner-logo {
    color: #00BAF2;
    font-size: 28px;
}

.partner-card[data-partner="etmoney"] .partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.etmoney-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #089959;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.etmoney-text {
    color: #089959;
    font-weight: 600;
    font-size: 24px;
}

.partner-card[data-partner="lark"] .partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lark-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #089959;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.lark-text {
    color: #089959;
    font-weight: 600;
    font-size: 24px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-grey-medium);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--tertiary-grey);
    color: var(--text-black);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--border-grey);
}

.modal-partner-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.modal-partner-logo {
    flex-shrink: 0;
    border: 1px solid #EFEFEF;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-partner-logo-image {
    width: 90px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.modal-logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-black);
}

.modal-logo-groww,
.modal-logo-phonepe,
.modal-logo-etmoney,
.modal-logo-lark {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-groww-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #089959 0%, #0AB169 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.modal-groww-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modal-groww-name {
    color: #089959;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
}

.modal-groww-credit {
    color: #0A66C2;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
}

.modal-phonepe-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #5F259F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.modal-phonepe-text {
    color: #5F259F;
    font-weight: 600;
    font-size: 20px;
}

.modal-etmoney-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #089959;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.modal-etmoney-text {
    color: #089959;
    font-weight: 600;
    font-size: 20px;
}

.modal-lark-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #089959;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.modal-lark-text {
    color: #089959;
    font-weight: 600;
    font-size: 20px;
}

.modal-partner-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-partner-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-black);
    margin: 0;
    line-height: 1.2;
}

.modal-company-name {
    font-size: 14px;
    color: var(--text-grey-medium);
    margin: 0;
}

.modal-visit-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--surface-green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.modal-visit-link-icon {
    background-color: var(--tertiary-green);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: fit-content;
}

.modal-visit-link:hover {
    opacity: 0.8;
}


.modal-body {
    padding: 24px;
}

.modal-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-grey-medium);
    margin-bottom: 24px;
}

.modal-section {
    /* margin-bottom: 32px; */
    border-top: 1px solid var(--border-grey);

    padding-top: 12px;
    margin-bottom: 12px;
}

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

.modal-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 12px;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-list li {
    font-size: 16px;
    color: var(--text-grey-medium);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

/* Unordered list items */
ul.modal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-grey-medium);
    font-weight: 500;
}

/* Ordered list styling */
ol.modal-list {
    counter-reset: item;
    padding-left: 0;
}

ol.modal-list li {
    counter-increment: item;
    padding-left: 24px;
}

ol.modal-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: var(--text-grey-medium);
    font-weight: 500;
}

.modal-address {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-grey-medium);
    margin-bottom: 20px;
}

.modal-contact-items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;

}

.modal-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-grey-medium);
}

.modal-contact-item span {
    color: #089958;
}

.modal-contact-item svg {
    color: var(--text-grey-medium);
    flex-shrink: 0;
}

.modal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.modal-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--surface-green);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.modal-link:hover {
    opacity: 0.8;
}

.modal-link img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* App Download Modal Styles */
.app-download-modal {
    max-width: 500px;
    text-align: center;
}

.app-modal-body {
    padding: 40px 32px;
}

.app-modal-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-black);
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.app-modal-subtitle {
    font-size: 16px;
    color: var(--text-grey-medium);
    margin: 0 0 32px 0;
}

.qr-code-container {
    margin: 0 auto 32px;
    width: 200px;
    height: 200px;
    background: white;
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.qr-code-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.app-store-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s ease;
    width: 100%;
    max-width: 200px;
}

.app-store-button:hover {
    transform: scale(1.05);
}

.app-store-badge {
    width: 100%;
    height: auto;
    max-width: 200px;
    display: block;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.rating-stars {
    color: #FFB800;
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-value {
    color: var(--text-grey-medium);
    font-weight: 500;
}

/* Responsive styles for app download modal */
@media (max-width: 768px) {
    .app-download-modal {
        max-width: 90%;
    }

    .app-modal-body {
        padding: 32px 24px;
    }

    .app-modal-title {
        font-size: 24px;
    }

    .app-modal-subtitle {
        font-size: 14px;
    }

    .qr-code-container {
        width: 180px;
        height: 180px;
        margin-bottom: 24px;
    }

    .app-store-buttons {
        gap: 16px;
    }

    .app-store-badge {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .app-modal-body {
        padding: 24px 20px;
    }

    .app-modal-title {
        font-size: 20px;
    }

    .qr-code-container {
        width: 160px;
        height: 160px;
        margin-bottom: 20px;
    }

    .app-store-badge {
        max-width: 160px;
    }

    .rating-stars {
        font-size: 14px;
    }

    .rating-value {
        font-size: 12px;
    }
}

/* Responsive styles for partners page */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partners-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .partners-page .main-content {
        padding: 100px 16px 60px;
        width: 100%;
        gap: 60px;
    }

    .partners-title {
        font-size: 32px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }

    .partner-card {
        min-height: 140px;
        padding: 32px 24px;
    }

    .modal-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 24px 24px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .modal-visit-link {
        align-self: flex-end;
    }

    .modal-body {
        padding: 24px;
    }

    .modal-partner-name {
        font-size: 20px;
    }

    .modal-section-title {
        font-size: 16px;
    }

    .modal-description,
    .modal-address,
    .modal-contact-item,
    .modal-link {
        font-size: 14px;
    }

    .modal-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .partners-title {
        font-size: 28px;
    }

    .partner-card {
        min-height: 120px;
        padding: 24px 20px;
    }

    .modal-header {
        padding: 20px 20px 16px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 28px;
    }
}