/* Font Loading */

/* Aeonik */
@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik/fonnts.com-Aeonik-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Aeonik';
    src: url('../fonts/Aeonik/fonnts.com-Aeonik-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: block;
}

/* Gilroy */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-ThinItalic.woff2') format('woff2');
    font-weight: 100;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-UltraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-UltraLightItalic.woff2') format('woff2');
    font-weight: 200;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-RegularItalic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-SemiboldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Extrabold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-ExtraboldItalic.woff2') format('woff2');
    font-weight: 800;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Heavy.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-HeavyItalic.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-Black.woff2') format('woff2');
    font-weight: 950;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy/Gilroy-BlackItalic.woff2') format('woff2');
    font-weight: 950;
    font-style: italic;
    font-display: block;
}

/* Base Styles */

/* Global Styles */
body {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

/* Navigation */
.navigation {
    background-color: #1200FF;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: auto;
    max-height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
}

.nav-link {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.nav-app-store img {
    width: 126px;
    height: 42px;
    object-fit: contain;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    position: relative;
}

.mobile-menu-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1200FF;
    z-index: 1000;
    padding: 16px;
    box-sizing: border-box;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
}

.mobile-close-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 24px;
}

.mobile-nav-link {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: white;
    text-decoration: none;
    display: block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero {
    background-color: #1200FF;
    padding: 100px 0;
}

.hero-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 614px;
}

.hero-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 70px;
    color: white;
    margin: 0 0 16px 0;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-description {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: white;
    margin: 0 0 64px 0;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-btn {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 19px;
    width: 301px;
    height: 60px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.hero-btn-primary {
    background-color: white;
    color: black;
}

.hero-btn-primary:hover {
    background-color: #f5f5f5;
}

.hero-btn-secondary {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.hero-features {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-checkmark {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.hero-feature-text {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.hero-image-mobile {
    display: none;
}

/* Partners Section */
.partners {
    background-color: white;
    padding: 120px 0;
}

.partners-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-content {
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.partners-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: black;
    margin: 0 0 16px 0;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
}

.partners-description {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    margin-bottom: 60px;
}

.partners-image {
    margin-bottom: 60px;
    width: 100%;
}

.partners-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.partners-button {
    display: flex;
    justify-content: center;
}

.partners-btn {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: white;
    background-color: #1200FF;
    border: none;
    border-radius: 8px;
    width: 390px;
    height: 60px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.partners-btn:hover {
    background-color: #0f00d6;
}

/* Financial Instruments Section */
.financial {
    background-color: #1C1C1C;
    padding: 120px 0;
    position: relative;
}

.financial-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.financial-content {
    text-align: center;
    margin-bottom: 60px;
}

.financial-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: white;
    margin: 0 0 16px 0;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.financial-description {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 auto 16px auto;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 590px;
}

.financial-additional {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: white;
    margin: 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.financial-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    /* margin-bottom: 40px; */
}

.financial-card {
    /* flex: 1; */
    max-width: 350px;
    background-image: linear-gradient(rgba(28, 28, 28, 0.5), rgba(28, 28, 28, 0.5)), url('../images/calc1Bg.png');
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/calc1Bg.png'); */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.financial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.financial-card-highlighted {
    background-image: url('../images/calc3Bg.png');
}

.card-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: white;
    margin: 0 0 24px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.card-list li {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: white;
    margin-bottom: 12px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    padding-left: 20px;
}

.card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    font-size: 17px;
}

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

.card-button {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.card-arrow {
    width: 62px;
    height: 62px;
}

.financial-dollars {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dollar {
    position: absolute;
    width: auto;
    height: 80px;
    object-fit: contain;
}

.dollar-1 {
    position: absolute;
    top: -172px;
    left: -170px;
    width: 309px;
    height: 233px;
}

.dollar-2 {
    top: -20px;
    right: -60px;
    width: 252px;
    height: 177px;
}

.dollar-3 {
    position: absolute;
    top: 132px;
    right: -169px;
    width: 252px;
    height: 177px;
}

/* FAQ Section */
.faq {
    background-color: white;
    padding: 124px 0;
}

.faq-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

.faq-left {
    flex: 1;
    background-image: url('../images/faq.png');
    background-size: cover;
    background-position: center;
    background-color: #1200FF;
    border-radius: 50px;
    padding: 44px;
    height: 426px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.faq-content {
    text-align: left;
}

.faq-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: white;
    margin: 0 0 16px 0;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.faq-subtitle {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: white;
    margin: 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.faq-right {
    flex: 1;
    background-color: white;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #DDDDDD;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}



.faq-question-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: black;
    margin: 0;
    padding-right: 20px;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.faq-answer {
    display: none;
    padding: 0 0 24px 0;
}

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

.faq-answer p {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Terms Page Navigation */
.terms-navigation {
    background-color: #86A4FF;
}

.terms-mobile-nav {
    background-color: #86A4FF;
}

/* Partners Page Navigation */
.partners-navigation {
    background-color: #86A4FF;
}

.partners-mobile-nav {
    background-color: #86A4FF;
}

/* Terms Page Content */
.terms-content {
    background: linear-gradient(to bottom, #86A4FF 0%, #F6F8FE 200px, #F6F8FE 100%);
    padding: 80px 0;
}

.terms-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: black;
    margin: 0 0 40px 0;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.terms-text {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 800px;
}

.terms-text h2 {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: black;
    margin: 40px 0 16px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text p {
    margin: 0 0 16px 0;
}

.terms-text ul {
    margin: 16px 0;
    padding-left: 20px;
}

    .terms-text li {
        margin-bottom: 8px;
    }

.terms-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.terms-text table th {
    background-color: #F6F8FE;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 17px;
    color: black;
    border: 1px solid #E5E5E5;
    font-family: 'Aeonik', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.terms-text table td {
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.terms-text table tr:nth-child(even) {
    background-color: #F9F9F9;
}

.terms-text table tr:hover {
    background-color: #F6F8FE;
}

@media (max-width: 768px) {
    .terms-text table {
        font-size: 14px;
    }
    
    .terms-text table th,
    .terms-text table td {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .terms-text table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* About Us Page */
.about-content {
    background-color: white;
    padding: 80px 0;
}

.about-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: black;
    margin: 0 0 40px 0;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.about-text {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 800px;
}

.about-text h2 {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: black;
    margin: 40px 0 16px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    margin: 0 0 16px 0;
}

.about-text ul {
    margin: 16px 0;
    padding-left: 20px;
}

    .about-text li {
        margin-bottom: 8px;
    }

/* Partners Page */
.partners-page-content {
    background: linear-gradient(to bottom, #86A4FF 0%, #F6F8FE 200px, #F6F8FE 100%);
    padding: 80px 0;
}

.partners-page-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.partners-page-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: black;
    margin: 0 0 40px 0;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.partners-text {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 800px;
    text-align: left;
}

.partners-text h2 {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: black;
    margin: 40px 0 16px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.partners-text h2:first-child {
    margin-top: 0;
}

.partners-text p {
    margin: 0 0 16px 0;
}

.partners-text ul {
    margin: 16px 0;
    padding-left: 20px;
}

    .partners-text li {
        margin-bottom: 8px;
    }

/* Partners Grid Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
}

.partner-card {
    background-color: white;
    border-radius: 30px;
    padding: 24px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.partner-verified {
    margin-bottom: 24px;
    text-align: left;
}

.verified-badge {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #97DB55;
    padding: 10px 20px;
    border: 1.5px solid #97DB55;
    border-radius: 100px;
    display: inline-block;
    text-align: left;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.partner-logo {
    margin-bottom: 12px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.rating-number {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.rating-star {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.rating-reviews {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.partner-divider {
    height: 1px;
    background-color: #F3F3F5;
    margin-bottom: 24px;
}

.partner-name {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: black;
    margin: 0 0 16px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.partner-description {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    line-height: 1.6;
    margin: 0 0 24px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.partner-button {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: white;
    background-color: #1200FF;
    border: none;
    border-radius: 8px;
    width: 316px;
    height: 52px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.partner-button:hover {
    background-color: #0f00d6;
}

/* Mission Section */
.mission {
    background-color: #F6F8FE;
    padding: 120px 0;
}

.mission-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-main-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.mission-content {
    flex: 1;
    max-width: 600px;
}

.mission-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: black;
    margin: 0 0 16px 0;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mission-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.mission-tag {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: black;
    padding: 6px 10px;
    border: 1px solid #97DB55;
    border-radius: 100px;
    background-color: transparent;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mission-text {
    max-width: 495px;
    margin-bottom: 32px;
}

.mission-text p {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: black;
    line-height: 1.6;
    margin: 0 0 16px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

.mission-button {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: white;
    background-color: #1200FF;
    border: none;
    border-radius: 8px;
    width: 279px;
    height: 60px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mission-button:hover {
    background-color: #0f00d6;
}

/* Stats Section */
.stats {
    background-color: white;
    padding: 120px 0;
}

.stats-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.stats-text {
    flex: 1;
}

.stats-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: black;
    margin: 0;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stats-divider {
    width: 1px;
    height: 80px;
    background-color: #DDDDDD;
    flex-shrink: 0;
}

.stats-numbers {
    flex: 1;
    display: flex;
    gap: 60px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 90px;
    color: #1200FF;
    margin: 0 0 8px 0;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.stat-label {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    margin: 0;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Satisfied Users Section */
.satisfied-users {
    background-image: url('../images/dots.png'), linear-gradient(to bottom, #1B1AFF, #1B1AFF);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    padding: 100px 0;
    overflow: hidden;
    width: 100%;
}

.satisfied-users-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.satisfied-users-block {
    background-image: url('../images/satisfUsers.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 277px;
    border-radius: 44px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.satisfied-users-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: white;
    margin: 0 0 16px 0;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.satisfied-users-description {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: white;
    margin: 0 0 32px 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.satisfied-users-button {
    display: flex;
    justify-content: center;
}

.satisfied-users-app-store {
    width: 210px;
    height: 70px;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: #1C1C1C;
    padding: 80px 0;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    height: auto;
    max-height: 40px;
}

.footer-content {
    flex: 1;
    max-width: 562px;
}

.footer-description {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0 0 24px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.footer-link {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #FFFFFF;
    text-decoration: underline;
    transition: opacity 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.footer-nav {
    flex-shrink: 0;
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-link {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #FFFFFF;
    text-decoration: underline;
    transition: opacity 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer-nav-link:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .nav-app-store {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .navigation {
        padding: 16px 0 12px 0;
    }

    /* Hero Responsive */
    .hero {
        padding: 60px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

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

    .hero-description {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-features {
        align-items: center;
    }

    /* Footer Responsive */
    .footer {
        padding: 32px 0;
    }

    .footer-container {
        padding: 0 16px;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-logo {
        margin-bottom: 16px;
        order: 1;
    }

    .footer-content {
        max-width: 100%;
        order: 3;
    }

    .footer-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-legal {
        justify-content: flex-start;
    }

    .footer-link {
        font-size: 13px;
    }

    .footer-nav {
        order: 2;
    }

    .footer-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-nav-link {
        font-size: 13px;
    }

    /* Partners Responsive */
    .partners {
        padding: 44px 0;
    }

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

    .partners-description {
        font-size: 15px;
    }

    /* Financial Mobile Responsive */
    .financial {
        padding: 45px 0;
    }

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

    .financial-description,
    .financial-additional {
        font-size: 15px;
    }

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

    .card-list li {
        font-size: 15px;
    }

    .financial-dollars {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        height: auto;
        pointer-events: auto;
    }

    .dollar-1 {
        display: none;
    }

    .dollar-3 {
        position: absolute;
        top: 270px;
        left: -40px;
        width: 172px;
        height: 121px;
    }

    .financial-cards {
        flex-direction: column;
        gap: 16px;
    }

    .financial-card {
        max-width: 100%;
        height: 261px !important;
    }

    /* FAQ Mobile Responsive */
    .faq {
        padding: 44px 0;
    }

    .faq-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 16px;
    }

    .faq-left {
        padding: 32px 24px;
        height: 284px;
    }

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

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

    .faq-question-title {
        font-size: 17px;
    }

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

    /* Satisfied Users Mobile Responsive */
    .satisfied-users {
        padding: 60px 0;
    }

    .satisfied-users-container {
        padding: 0 16px;
    }

    .satisfied-users-block {
        height: 240px;
        padding: 32px 24px;
        border-radius: 24px;
    }

    .satisfied-users-title {
        font-size: 28px;
    }

    .satisfied-users-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .satisfied-users-app-store {
        width: 180px;
        height: 60px;
    }

    /* Terms Page Mobile Responsive */
    .terms-content {
        padding: 60px 0;
    }

    .terms-container {
        padding: 0 16px;
    }

    .terms-title {
        font-size: 40px;
        margin-bottom: 32px;
    }

    .terms-text {
        font-size: 15px;
    }

    .terms-text h2 {
        font-size: 24px;
        margin: 32px 0 12px 0;
    }

    /* About Us Mobile Responsive */
    .about-content {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 16px;
    }

    .about-title {
        font-size: 40px;
        margin-bottom: 32px;
    }

    .about-text {
        font-size: 15px;
    }

    .about-text h2 {
        font-size: 24px;
        margin: 32px 0 12px 0;
    }

    /* Mission Mobile Responsive */
    .mission {
        padding: 60px 0;
    }

    .mission-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 16px;
    }

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

    .mission-tags {
        gap: 8px;
        margin-bottom: 24px;
    }

    .mission-tag {
        font-size: 14px;
        padding: 4px 8px;
    }

    .mission-text {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .mission-text p {
        font-size: 15px;
    }

    .mission-button {
        width: 100%;
        max-width: 280px;
        height: 50px;
        font-size: 16px;
    }

    /* Stats Mobile Responsive */
    .stats {
        padding: 60px 0;
    }

    .stats-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 16px;
    }

    .stats-title {
        font-size: 32px;
        text-align: center;
    }

    .stats-divider {
        display: none;
    }

    .stats-numbers {
        gap: 40px;
    }

    .stat-number {
        font-size: 60px;
    }

    .stat-label {
        font-size: 15px;
    }

    /* Partners Page Mobile Responsive */
    .partners-page-content {
        padding: 60px 0;
    }

    .partners-page-container {
        padding: 0 16px;
    }

    .partners-page-title {
        font-size: 40px;
        margin-bottom: 32px;
    }

    .partners-text {
        font-size: 15px;
    }

    .partners-text h2 {
        font-size: 24px;
        margin: 32px 0 12px 0;
    }

    /* Partners Grid Mobile Responsive */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .partner-card {
        padding: 20px;
        border-radius: 20px;
    }

    .verified-badge {
        font-size: 15px;
        padding: 8px 16px;
    }

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

    .partner-description {
        font-size: 15px;
    }

    .partner-button {
        width: 100%;
        height: 48px;
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .navigation {
        padding: 16px 0 12px 0;
    }
    
    .mobile-nav {
        padding: 16px;
    }

    /* Hero Mobile Responsive */
    .hero {
        padding: 44px 0;
    }

    .hero-container {
        padding: 0 16px;
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .hero-image {
        display: none;
    }

    .hero-image-mobile {
        display: block;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 34px;
        white-space: normal;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 24px;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        height: 50px;
        font-size: 16px;
    }

    .hero-features {
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .hero-feature-text {
        font-size: 15px;
    }

    .hero-main-image {
        width: 310px;
        height: 365px;
        object-fit: cover;
    }

    /* Footer Mobile Responsive */
    .footer {
        padding: 32px 0;
    }

    .footer-container {
        padding: 0 16px;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-logo {
        margin-bottom: 16px;
        order: 1;
    }

    .footer-content {
        max-width: 100%;
        order: 3;
    }

    .footer-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-legal {
        justify-content: flex-start;
    }

    .footer-link {
        font-size: 13px;
    }

    .footer-nav {
        order: 2;
    }

    .footer-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-nav-link {
        font-size: 13px;
    }

    /* Partners Mobile Responsive */
    .partners {
        padding: 44px 0;
    }

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

    .partners-description {
        font-size: 15px;
    }

    /* Financial Mobile Responsive */
    .financial {
        padding: 44px 0;
    }

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

    .financial-description,
    .financial-additional {
        font-size: 15px;
    }

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

    .card-list li {
        font-size: 15px;
    }

    .financial-dollars {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        height: auto;
        pointer-events: auto;
    }

    .dollar-3 {
        position: absolute;
        top: 270px;
        left: -40px;
        width: 172px;
        height: 121px;
    }
}

/* Tax Calculator Section */
.tax-calculator {
    background-color: #1200FF;
    padding: 100px 0;
}

.tax-calculator-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.tax-calculator-wrapper {
    background-color: white;
    padding: 44px;
    border-radius: 40px;
    display: flex;
    gap: 40px;
}

.tax-calculator-left {
    flex: 1;
}

.tax-calculator-title {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: black;
    margin: 0 0 16px 0;
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tax-calculator-subtitle {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    margin: 0 0 40px 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tax-calculator-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-field {
    flex: 1;
    position: relative;
}

.form-field.full-width {
    flex: 1;
}

.tax-input,
.tax-select {
    width: 100%;
    padding: 16px;
    padding-right: 32px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: black;
    background-color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.tax-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2371717A' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.tax-input::placeholder {
    color: #71717A;
}

.tax-input:focus,
.tax-select:focus {
    outline: none;
    border-color: #1200FF;
    border-width: 1px;
    box-shadow: 0px 0px 0px 4px rgba(18, 0, 255, 0.25);
}

.tax-input.error,
.tax-select.error {
    border-color: #FF0000;
}

.error-message {
    display: none;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #FF0000;
    margin-top: 8px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.error-message.show {
    display: block;
}

.calculate-btn {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: white;
    background-color: #1200FF;
    border: none;
    border-radius: 8px;
    width: 522px;
    height: 60px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-top: 16px;
}

.calculate-btn:hover {
    background-color: #0f00d6;
}

.tax-calculator-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.results-block {
    background-color: #1B1AFF;
    padding: 32px;
    border-radius: 20px;
    color: white;
}

.results-title {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-size: 17px;
    margin: 0 0 16px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.estimated-amount {
    font-family: 'Aeonik', sans-serif;
    font-weight: 700;
    font-size: 48px;
    margin: 0 0 24px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.breakdown-item.highlighted {
    background-color: #2A29FF;
    padding: 8px 12px;
    border-radius: 20px;
    margin: 8px -12px;
}

.chart-block {
    background-color: #1B1AFF;
    padding: 32px;
    border-radius: 20px;
    color: white;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.legend-color.purple {
    background-color: #8B5CF6;
}

.legend-color.green {
    background-color: #10B981;
}

.chart-container {
    text-align: center;
    margin-left: auto;
}

.chart-title {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.chart-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-circle svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.chart-progress {
    transition: stroke-dasharray 0.5s ease;
}

.chart-progress.hidden {
    display: none;
}

.chart-percentage-left {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-percentage-right {
    position: absolute;
    top: 15px;
    right: -15px;
    color: white;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-text {
    position: relative;
    z-index: 2;
    color: white;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



/* Tax Calculator Mobile Responsive */
@media (max-width: 768px) {
    .tax-calculator {
        padding: 60px 0;
    }
    
    .tax-calculator-wrapper {
        flex-direction: column;
        gap: 24px;
        padding: 32px;
        border-radius: 24px;
    }
    
    .tax-calculator-title {
        font-size: 32px;
    }
    
    .tax-calculator-subtitle {
        font-size: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .calculate-btn {
        width: 100%;
        height: 52px;
        font-size: 16px;
    }
    
    .results-block,
    .chart-block {
        padding: 24px;
        border-radius: 16px;
    }
    
    .estimated-amount {
        font-size: 36px;
    }
    
    .chart-circle {
        width: 80px;
        height: 80px;
    }
}

/* Processing Modal */
.processing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.tax-processing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tax-processing-modal.show {
    opacity: 1;
    visibility: visible;
}



.processing-content {
    background-color: white;
    padding: 40px;
    border-radius: 44px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.processing-content h3 {
    font-family: 'Aeonik TRIAL', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #000;
    margin-bottom: 12px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.processing-content p {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #747474;
    margin-bottom: 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-image {
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: white;
    padding: 30px 0;
    border-bottom: 1px solid #E5E5E5;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.breadcrumb-link:hover {
    color: #1200FF;
}

.breadcrumb-link:last-child {
    color: #747474;
    pointer-events: none;
}

.breadcrumb-separator {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Loan Application Steps */
.loan-steps {
    background: linear-gradient(to bottom, #86A4FF 0%, #F6F8FE 200px, #F6F8FE 100%);
    /* padding: 80px 0; */
    padding-bottom: 80px;
    padding-top: 30px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.loan-steps-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(27, 26, 255, 0.2);
    border-radius: 100px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    width: 50%;
    height: 100%;
    background-color: #1B1AFF;
    border-radius: 100px;
    transition: width 0.3s ease;
}

.step-indicator {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    margin-bottom: 44px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.form-card {
    background-color: white;
    border-radius: 40px;
    padding: 44px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-family: 'Aeonik TRIAL', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: #000;
    margin-bottom: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.form-subtitle {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    margin-bottom: 44px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.form-row {
    display: flex;
    gap: 16px;
}

.form-field {
    flex: 1;
    position: relative;
}

.form-field.full-width {
    flex: 1;
}

.loan-input {
    width: 100%;
    padding: 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: black;
    background-color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.loan-input::placeholder {
    color: #71717A;
}

.loan-input:focus {
    outline: none;
    border-color: #1200FF;
    border-width: 1px;
    box-shadow: 0px 0px 0px 4px rgba(18, 0, 255, 0.25);
}

.loan-input.error {
    border-color: #FF0000;
}

.error-message {
    display: none;
    color: #FF0000;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 12px;
    margin-top: 4px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.error-message.show {
    display: block;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.next-step-btn {
    background-color: #1200FF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 20px 32px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 19px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 216px;
    height: 60px;
}

.next-step-btn:hover {
    background-color: #0E00CC;
}

.loan-select {
    width: 100%;
    padding: 16px;
    padding-right: 32px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: black;
    background-color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2371717A' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.3s ease;
}

.loan-select:focus {
    outline: none;
    border-color: #1200FF;
    border-width: 1px;
    box-shadow: 0px 0px 0px 4px rgba(18, 0, 255, 0.25);
}

.loan-select.error {
    border-color: #FF0000;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #747474;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #1200FF;
    border-radius: 4px;
    background-color: white;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: background-color 0.3s ease;
}

.checkbox-input:checked + .checkbox-custom {
    background-color: #1200FF;
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    line-height: 1.4;
}

.checkbox-text a {
    color: #1200FF;
    text-decoration: underline;
}

.checkbox-text a:hover {
    text-decoration: none;
}

.back-btn {
    background-color: white;
    color: #1200FF;
    border: none;
    border-radius: 8px;
    padding: 20px 32px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 19px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 216px;
    height: 60px;
    margin-right: 12px;
}

.back-btn:hover {
    background-color: #F6F8FE;
}

.find-offers-btn {
    background-color: #1200FF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 20px 32px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 19px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 216px;
    height: 60px;
}

.find-offers-btn:hover {
    background-color: #0E00CC;
}

/* Offers Page */
.offers {
    background: linear-gradient(to bottom, #86A4FF 0%, #F6F8FE 200px, #F6F8FE 100%);
    padding: 80px 0;
    min-height: 100vh;
}

.offers-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.back-btn-offers {
    background-color: white;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 19px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 101px;
    height: 48px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.back-btn-offers:hover {
    background-color: #F6F8FE;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.offers-content {
    margin-top: 24px;
}

.offers-title {
    font-family: 'Aeonik TRIAL', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: #000;
    margin-bottom: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.offers-subtitle {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    margin-bottom: 44px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    .processing-content {
        padding: 32px 24px;
        border-radius: 16px;
    }
    
    .processing-content h3 {
        font-size: 20px;
    }
    
    .processing-content p {
        font-size: 14px;
    }
    
    .loan-steps {
        padding: 60px 0;
    }
    
    .loan-steps-container {
        padding: 0 16px;
    }
    
    .form-card {
        padding: 32px 24px;
        border-radius: 24px;
    }
    
    .form-title {
        font-size: 32px;
    }
    
    .form-subtitle {
        font-size: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .next-step-btn {
        width: 100%;
        height: 52px;
        font-size: 16px;
    }
}

/* Offers Grid Styles */
.offers-grid-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 44px;
}

.offer-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    height: 475px;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.offer-card:not(.top-offer) {
    box-shadow: 0px 3px 8px 0px #0000000D;
}

.top-offer {
    border: 2px solid #1B1AFF;
}

.best-match-banner {
    background: #1B1AFF;
    color: white;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-align: center;
    padding: 8px 0;
    border-radius: 10px 10px 0 0;
    margin: -24px -24px 0 -24px;
}

.offer-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #97DB55;
    border-radius: 100px;
    padding: 6px 10px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #97DB55;
    margin-bottom: 24px;
    width: fit-content;
}

.top-offer .offer-verified {
    margin-top: 16px;
}

.offer-verified img {
    width: 12px;
    height: 12px;
}

.offer-rate-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.offer-rate-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offer-rate-label {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
}

.offer-rate-value {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #1200FF;
}

.offer-company-logo {
    width: 152px;
    height: 64px;
    object-fit: contain;
}

.offer-separator {
    height: 1px;
    background: #F3F3F5;
    margin: 20px 0 24px 0;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.offer-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-detail-label {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
}

.offer-detail-value {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: black;
}

.offer-apply-btn {
    width: 316px;
    height: 52px;
    border-radius: 8px;
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-size: 19px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
}

.offer-apply-btn.top-offer {
    background: #1200FF;
    color: white;
}

.offer-apply-btn:not(.top-offer) {
    background: #F7F9FF;
    color: #1200FF;
}

.offer-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive styles for offers */
@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }
    
    .offer-card {
        height: auto;
        min-height: 400px;
        padding: 20px;
    }
    
    .offer-apply-btn {
        width: 100%;
        max-width: 316px;
    }
    
    .offer-company-logo {
        width: 120px;
        height: 50px;
    }
}

/* Offers Loader Styles */
.offers-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #F3F3F5;
    border-top: 3px solid #1200FF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

.loader-text {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #747474;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
