.hero-section {
    height: 100vh;
    width: 100%;
    background-image: url("assets/images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 20px;
}

.hero-text {
    max-width: 700px;
    color: #ffffff;
}

.hero-title {
    font-size: 84px;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 35px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    width: 742px;
}

.about-section {
    margin: 0 auto;
    padding: 60px 40px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.section-icon {
    width: 32px;
    height: auto;
    margin-right: 12px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-left h3 {
    color: #141e55;
    line-height: 67px;
    margin-bottom: 32px;
    font-size: 47px;
    letter-spacing: 0.05em;
}

.about-right p {
    /* font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px; */

    font-size: 28px;
    color: #6b7280;
    /* line-height: 100%; */
    margin-bottom: 50px;
}

.more-info-btn {
    margin-top: 20px;
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 10px 17px;
    border-radius: 20px 0 20px 0;
    font-size: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-border-radius: 20px 0 20px 0;
    -moz-border-radius: 20px 0 20px 0;
    -ms-border-radius: 20px 0 20px 0;
    -o-border-radius: 20px 0 20px 0;
}

.more-info-btn:hover {
    background-color: #e55a2b;
}

.capabilities-section {
    background-color: white;
    margin: 0 20px;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.capabilities-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.capabilities-icon {
    width: 32px;
    height: auto;
    margin-right: 10px;
}

.section-title {
    color: #101351;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
}

/* Desktop Layout */
.capabilities-content-desktop {
    display: grid;
    grid-template-columns: 1.8fr 1px 2fr;
    gap: 30px;
    align-items: stretch;
}

.capabilities-left {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e0e0e0;
}

.capabilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capabilities-list li {
    padding: 14px 0;
    font-weight: 500;
    font-size: 46px;
    color: #1f2657;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.capabilities-list li:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.capabilities-list li.active {
    color: #ff6b35;
    font-weight: 600;
}

.capabilities-list li:last-child {
    border-bottom: none;
}

.capabilities-list li:first-child {
    border-top: none;
}

.capabilities-right {
    padding-left: 10px;
}

.capability-description {
    font-size: 26px;
    color: #58595b;
    line-height: 36px;
    display: none;
}

.capability-description.active {
    display: block;
}

/* Mobile Layout */
.capabilities-content-mobile {
    display: none;
    flex-direction: column;
}

.mobile-capability-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.mobile-capability-header {
    font-family: "Adobe Clean UX";
    padding: 20px 0;
    font-weight: 400;
    font-size: 22px;
    color: #101351;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.mobile-capability-header:hover {
    color: #f9804b;
}

.mobile-capability-header.active {
    color: #f9804b;
}

.mobile-capability-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-capability-header.active .mobile-capability-arrow {
    transform: rotate(180deg);
}

.mobile-capability-description {
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: #58595b;
    line-height: 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-capability-description.active {
    max-height: 200px;
    padding: 0 0 20px 0;
}

@media (max-width: 768px) {
    .capabilities-content-desktop {
        display: none;
    }

    .capabilities-content-mobile {
        display: flex;
    }

    .mobile-capability-header {
        font-size: 22px;
        padding: 16px 0;
    }

    .mobile-capability-description {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .capabilities-section {
        margin: 0 5px;
        padding: 30px 15px;
    }

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

    .mobile-capability-header {
        font-size: 15px;
        padding: 14px 0;
    }

    .mobile-capability-description {
        font-size: 12px;
        line-height: 18px;
    }
}

.financial-section {
    margin: 0 auto;
    padding: 60px 50px;
    background-color: #ffffff;
    padding-bottom: 100px;
}

.financial-icon img {
    height: 70px;
    width: auto;
}

.financial-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
    margin: 20px;
}

.financial-text .left {
    font-family: "Arnika Variable";
    font-size: 47px;
    font-weight: 400;
    color: #101351;
    width: 52%;
    line-height: 67px;
    letter-spacing: 0.05em;
}

.financial-text .right {
    font-size: 28px;
    width: 49%;
    color: #58595b;
    line-height: 100%;
    font-weight: 400;
    margin-top: 4px;
}

.ecosystem-section {
    margin: 0 auto;
    padding: 60px 50px;
    background-color: #ffffff;
}

.ecosystem-header {
    margin-bottom: 60px;
}

.ecosystem-header-icon {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.ecosystem-header-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
    margin: 20px;
}

.ecosystem-header-text .left {
    font-family: "Arnika Variable";
    font-size: 47px;
    font-weight: 400;
    color: #101351;
    width: 52%;
    line-height: 67px;
    letter-spacing: 0.05em;
}

.ecosystem-header-text .right {
    font-size: 26px;
    width: 49%;
    color: #58595b;
    line-height: 100%;
    font-weight: 400;
    margin-top: 4px;
}

.group-ecosystem {
    display: flex;
    justify-content: center;
    width: 100%;
}

.right-panel {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.card {
    padding: 30px 25px;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: 320px;
    position: relative;
}

.card:nth-child(3),
.card:nth-child(6) {
    border-right: none;
}

.card:nth-child(4),
.card:nth-child(5),
.card:nth-child(6) {
    border-bottom: none;
}

.card img {
    width: 386px;
    height: 134px;
    margin-bottom: 20px;
    object-fit: contain;
}

.card p {
    font-size: 28px;
    color: #58595b;
    line-height: 100%;
    flex-grow: 1;
    margin-bottom: 20px;
}

.bottom-card button {
    margin-top: auto;
    padding: 8px 13px;
    background-color: #e8eef7;
    color: #101351;
    border: none;
    border-radius: 20px 0 20px 0;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s;
    -webkit-border-radius: 20px 0 20px 0;
    -moz-border-radius: 20px 0 20px 0;
    -ms-border-radius: 20px 0 20px 0;
    -o-border-radius: 20px 0 20px 0;
}

.bottom-card button:hover {
    background-color: #d4def2;
}

.business-section {
    display: flex;
    min-height: 100vh;
    background-color: #f8f8f8;
}

.left-content {
    flex: 0 0 600px;
    padding: 60px 40px;
    background-color: white;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

.left-content h1 {
    font-size: 46px;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 104px;
    line-height: 1.3;
}

.left-content p {
    font-size: 28px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 60px;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 16px;
}

.scroll-indicator span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #060613;
}

.scroll-line {
    position: relative;
    width: 180px;
    height: 1px;
    background: #58595b;
    border-radius: 3px;
}

.scroll-handle {
    position: absolute;
    top: -5px;
    left: 0;
    width: 40px;
    height: 10px;
    background: #f58f58;
    border-radius: 7px;
    cursor: grab;
}

.scroll-handle:active {
    cursor: grabbing;
}

.right-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.cards-container {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 50px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cards-container::-webkit-scrollbar {
    display: none;
}

.card-hr {
    flex: 0 0 500px;
    height: 679px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px;
    color: white;
    overflow: hidden;
}

.card-hr::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-hr h2 {
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-bottom-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    font-size: 28px;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0;
}

hr.custom-line {
    display: flex;
    border: none;
    border-top: 1px solid #58595b;
    margin-bottom: 40px;
}

.financial-section .custom-line-bottom {
    display: none;
}

.nav-dots {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}

/* Updated CSS */
.network-section {
    margin-top: 40px;
    padding: 60px 0;
    overflow: hidden;
}

.network-content {
    padding: 0 50px;
    margin: 0 auto;
}

.network-header {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 100px;
    margin-bottom: 50px;
    margin-left: 20px;
}

.network-title {
    font-size: 47px;
    font-weight: 400;
    color: #141e55;
    margin-bottom: 0;
    letter-spacing: 5%;
    white-space: nowrap;
    font-family: "Arnika Variable";
}

.network-description {
    font-size: 28px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 705px;
    margin-top: 4px;
    height: 61px;
}

.brands-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.brand-row {
    overflow: hidden;
    padding: 10px 0;
    margin: 0 -50px;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
}

.brand-row-content {
    display: flex;
    gap: 30px;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    width: max-content;
}

.scroll-right .brand-row-content {
    animation-name: scrollRight;
}

.scroll-left .brand-row-content {
    animation-name: scrollLeft;
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-card {
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    width: 280px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

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

.brand-card img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Pause animation on hover */
.brand-row:hover .brand-row-content {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-row-content {
        animation-duration: 25s;
    }

    .brand-card {
        width: 240px;
        height: 100px;
        padding: 20px 15px;
    }

    .brand-card img {
        height: 50px;
    }
}

.contact-btn:hover {
    background-color: #e55a42;
}


.privacy-section {
    display: flex;
    align-items: center;
    text-align: end;
    justify-content: center;
    margin-top: auto;
}

.privacy-links {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .network-content {
        padding: 0 40px;
    }

    .network-header {
        gap: 40px;
    }

    .brand-row {
        margin: 0 -40px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .brand-card {
        width: 260px;
        height: 110px;
        padding: 25px 18px;
    }

    .brand-card img {
        height: 55px;
        max-width: 180px;
    }

    .brand-row-content {
        width: calc(5 * 260px + 4 * 30px);
    }
}

@media (max-width: 768px) {
    .card-hr h2 {
        font-size: 20.23px;
        line-height: 100%;
        font-weight: 400;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .card-bottom-text {
        font-size: 12.31px;
        line-height: 100%;
        font-weight: 400;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        margin: 0;
    }

    .section-title {
        color: #101351;
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
    }

    .network-section {
        padding: 40px 0;
    }

    .network-content {
        padding: 0 30px;
    }

    .network-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .network-title {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: 5%;
        font-weight: 400;
        white-space: normal;
    }

    .network-description {
        font-size: 16px;
        line-height: 22.5px;
        font-weight: 400;
        max-width: 90%;
    }

    .brands-container {
        gap: 30px;
    }

    .brand-row {
        margin: 0 -30px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .brand-card {
        width: 240px;
        height: 100px;
        padding: 20px 15px;
    }

    .brand-card img {
        height: 50px;
        max-width: 160px;
    }

    .brand-row-content {
        width: calc(5 * 240px + 4 * 30px);
        gap: 25px;
    }

    .left-content .scroll-indicator {
        display: none;
    }

    .scroll-indicator {
        display: flex;
        right: 0;
        justify-content: end;
        margin-top: 20px;
        margin-right: 20px;
    }

    .scroll-indicator span {
        font-size: 9.6px;
        font-weight: 300;
        line-height: 100%;
    }

    .scroll-line {
        position: relative;
        width: 120px;
        height: 1px;
        background: #58595b;
        border-radius: 3px;
    }

    .scroll-handle {
        position: absolute;
        top: -5px;
        left: 0;
        width: 30px;
        height: 10px;
        background: #f58f58;
        border-radius: 7px;
        cursor: grab;
    }

    .scroll-handle:active {
        cursor: grabbing;
    }
}

@media (max-width: 480px) {
    .network-section {
        padding: 30px 0;
    }

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

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

    .network-description {
        font-size: 11px;
        line-height: 1.5;
    }

    .brands-container {
        gap: 25px;
    }

    .brand-row {
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .brand-card {
        width: 220px;
        height: 90px;
        padding: 18px 12px;
        border-radius: 6px;
    }

    .brand-card img {
        height: 45px;
        max-width: 140px;
    }

    .brand-row-content {
        width: calc(5 * 220px + 4 * 25px);
        gap: 20px;
    }
}

@media (hover: hover) {
    .brand-row {
        scroll-snap-type: x mandatory;
    }

    .brand-card {
        scroll-snap-align: start;
    }
}

@media (min-width: 769px) {
    .brand-row::-webkit-scrollbar {
        height: 6px;
        display: block;
    }

    .brand-row::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .brand-row::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 3px;
    }

    .brand-row::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }
}

@media (max-width: 1024px) {
    .ecosystem-section {
        padding: 40px 30px;
    }

    .ecosystem-header-text {
        gap: 40px;
        margin: 15px;
    }

    .ecosystem-header-text .left {
        font-size: 22px;
    }

    .right-panel {
        max-width: 900px;
    }

    .card {
        padding: 25px 20px;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .ecosystem-section {
        padding: 20px 15px;
    }

    .ecosystem-header-text .left {
        font-size: 18px;
    }

    .right-panel {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .business-section {
        flex-direction: column;
        background-color: #ffffff;
        padding-bottom: 30px;
    }

    .left-content {
        flex: none;
        padding: 40px 20px 0px 20px;
    }

    .left-content h1 {
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 20px;
    }

    .left-content p {
        font-size: 14px;
        font-weight: 400;
        line-height: 100%;
    }

    .card {
        flex: 0 0 280px;
        padding: 30px 20px;
    }

    .cards-container {
        padding: 0px 0px;
    }
}

@media (max-width: 768px) {
    .license-section {
        padding: 20px;
    }

    .license-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .logo-item {
        justify-content: flex-start;
    }

    .privacy-section {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px 0;
    }

    .ecosystem-header-text {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .ecosystem-header-text .left,
    .ecosystem-header-text .right {
        width: 100%;
    }

    .ecosystem-header-text .left {
        font-size: 20px !important;
        line-height: 28px;
        letter-spacing: 5%;
        font-weight: 400;
    }

    .ecosystem-header-text .right {
        font-size: 16px;
        line-height: 22.5px;
        font-weight: 400;
    }

    .right-panel {
        max-width: none;
        grid-template-columns: 1fr;
    }
    .right-panel .card:nth-child(1) {
        display: none;
    }

    .card {
        padding: 20px 5px 50px 5px;
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 10px;
    }

    .card:nth-child(2),
    .card:nth-child(3),
    .card:nth-child(4),
    .card:nth-child(5),
    .card:nth-child(6) {
        border-right: none;
    }

    .card:nth-child(2),
    .card:nth-child(3),
    .card:nth-child(4),
    .card:nth-child(5),
    .card:nth-child(6) {
        border-bottom: none;
    }

    .card:nth-child(2),
    .card:nth-child(3),
    .card:nth-child(4),
    .card:nth-child(5),
    .card:nth-child(6) {
        border-left: none;
    }

    .card img {
        height: 44px;
        margin-bottom: 0;
        width: 138px;
    }

    .card p {
        font-size: 12px;
        font-weight: 400;
        line-height: 17px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .network-content {
        padding: 0 20px;
    }

    .network-title {
        font-size: 36px;
    }

    .brand-card {
        padding: 30px 40px;
        min-width: 160px;
    }

    .brands-container {
        gap: 20px;
    }

    .brand-row-content {
        gap: 20px;
    }

    .brand-row {
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 769px) {
    .brand-row {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .brand-row::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-left h3 {
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 5%;
    }

    .about-right p {
        font-size: 16px;
        font-weight: 400;
        line-height: 22.5px;
    }

    .capabilities-section {
        margin: 0 -20px;
        padding: 40px 20px;
    }

    .capabilities-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .capabilities-list li {
        padding: 14px 0;
        font-weight: 500;
        font-size: 22px;
        color: #1f2657;
        border-bottom: 1px solid #e0e0e0;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .capability-description {
        padding-left: 0;
        margin-top: 10px;
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 30px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-section {
        background-position: 75% center;
    }

    .hero-content {
        top: auto;
        bottom: 20px;
        left: 5px;
        transform: none;
        text-align: left;
    }

    .hero-text {
        max-width: 80%;
    }

    .hero-title {
        font-size: 35px !important;
        font-weight: 400 !important;
    }

    .hero-subtitle {
        font-size: 19px !important;
        font-weight: 400 !important;
        width: 320px;
    }

    .financial-section {
        padding: 40px 20px;
    }

    .financial-section .custom-line-bottom {
        display: flex;
        border: none;
        border-top: 1px solid #58595b;
        margin-bottom: 40px;
    }

    .financial-text {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0px;
    }

    .financial-text .left,
    .financial-text .right {
        width: 100%;
        margin-top: 5px;
    }

    .financial-text .left {
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 5%;
    }

    .financial-text .right {
        font-size: 16px;
        font-weight: 400;
        line-height: 22.5px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        display: none;
    }

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

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

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