
        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        .main-navbar {
            position: relative;
            z-index: 1000;
            display: flex;
            align-items: center;
            width: 100%;
            min-height: 80px;
            padding: 0 60px;
            background: #ffffff;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
        }

        .navbar-logo {
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
        }

        .navbar-logo img {
            display: block;
            width: 100px;
            height: auto;
        }

        .navbar-menu {
            display: flex;
            align-items: center;
            gap: 38px;
            margin-left: auto;
        }

        .navbar-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .navbar-links a {
            color: #111827;
            font-size: 14px;
            font-weight: 600;
            line-height: 1;
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        .navbar-links a:hover,
        .navbar-links a.active {
            color: #24449b;
        }

        .signin-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 92px;
            min-height: 40px;
            padding: 10px 22px;
            color: #ffffff;
            background: #3b4fa0;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            line-height: 1;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.3s ease;
        }

        .signin-btn:hover {
            background: #263d94;
        }

        /* Hide checkbox on all screens */
        .nav-toggle {
            position: absolute;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        .hamburger {
            display: none;
            width: 42px;
            height: 42px;
            margin-left: auto;
            border: 1px solid #dfe3ed;
            border-radius: 8px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
        }

        .hamburger span {
            display: block;
            width: 21px;
            height: 2px;
            background: #243d8f;
            border-radius: 10px;
            transition: 0.3s ease;
        }

        /* Tablet */
        @media (max-width: 991px) {
            .main-navbar {
                padding: 0 25px;
            }

            .navbar-menu {
                gap: 24px;
            }

            .navbar-links {
                gap: 20px;
            }
        }

        /* Mobile */
        @media (max-width: 767px) {
            .main-navbar {
                min-height: 70px;
                padding: 0 18px;
            }

            .navbar-logo img {
                width: 88px;
            }

            .hamburger {
                display: flex;
            }

            .navbar-menu {
                position: absolute;
                top: 100%;
                right: 0;
                left: 0;
                display: none;
                width: 100%;
                margin: 0;
                padding: 20px 18px 24px;
                background: #ffffff;
                border-top: 1px solid #edf0f5;
                box-shadow: 0 10px 24px rgba(20, 35, 75, 0.12);
            }

            .navbar-links {
                display: flex;
                align-items: stretch;
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            .navbar-links a {
                display: block;
                width: 100%;
                padding: 14px 4px;
                border-bottom: 1px solid #edf0f5;
                font-size: 15px;
                line-height: 1.3;
            }

            .signin-btn {
                width: 100%;
                margin-top: 18px;
                padding: 13px 20px;
            }

            .nav-toggle:checked~.navbar-menu {
                display: block;
            }

            .nav-toggle:checked+.hamburger span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            .nav-toggle:checked+.hamburger span:nth-child(2) {
                opacity: 0;
            }

            .nav-toggle:checked+.hamburger span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }
        }


         .loan-hero {
        width: 100%;
        overflow: hidden;
        padding: 75px 60px;
        background: linear-gradient(135deg, #f9fafb 0%, #eef5ff 100%);
    }

    .loan-hero-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
        align-items: center;
        gap: 70px;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
    }

    .loan-hero-content {
        min-width: 0;
    }

    .loan-hero-title {
        margin: 0;
        color: #2c3e7e;
        font-size: clamp(38px, 4vw, 56px);
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .loan-hero-description {
        max-width: 650px;
        margin: 25px 0 0;
        color: #5d6472;
        font-size: 16px;
        line-height: 1.8;
    }

    .loan-hero-buttons {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 32px;
    }

    .loan-hero-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-width: 170px;
        min-height: 50px;
        padding: 13px 28px;
        border: 2px solid #e8356d;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 700;
        line-height: 1;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .loan-hero-btn-primary {
        color: #ffffff;
        background: #e8356d;
    }

    .loan-hero-btn-primary:hover {
        background: #ca2458;
        border-color: #ca2458;
        transform: translateY(-2px);
    }

    .loan-hero-btn-outline {
        color: #e8356d;
        background: transparent;
    }

    .loan-hero-btn-outline:hover {
        color: #ffffff;
        background: #e8356d;
        transform: translateY(-2px);
    }

    .loan-hero-partner {
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
        margin-top: 42px;
    }

    .loan-hero-line {
        height: 1px;
        flex: 1;
        background: linear-gradient(
            to right,
            transparent,
            #cfd5df
        );
    }

    .loan-hero-line:last-child {
        background: linear-gradient(
            to right,
            #cfd5df,
            transparent
        );
    }

    .loan-hero-partner-text {
        flex-shrink: 0;
        max-width: 380px;
        padding: 10px 20px;
        color: #111827;
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid #dde2ea;
        border-radius: 50px;
        box-shadow: 0 2px 5px rgba(30, 50, 90, 0.08);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.35;
        text-align: center;
        text-transform: uppercase;
    }

    .loan-hero-image-box {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
    }

    .loan-hero-image {
        display: block;
        width: 100%;
        max-width: 470px;
        height: auto;
        object-fit: contain;
    }

    /* Tablet */
    @media (max-width: 991px) {
        .loan-hero {
            padding: 60px 35px;
        }

        .loan-hero-container {
            gap: 40px;
        }

        .loan-hero-title {
            font-size: 40px;
        }
    }

    /* Mobile */
    @media (max-width: 767px) {
        .loan-hero {
            padding: 48px 22px 0;
        }

        .loan-hero-container {
            grid-template-columns: 1fr;
            gap: 65px;
        }

        .loan-hero-content {
            width: 100%;
            text-align: center;
        }

        .loan-hero-title {
            font-size: clamp(29px, 8vw, 36px);
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .desktop-break {
            display: none;
        }

        .loan-hero-description {
            max-width: 100%;
            margin-top: 27px;
            font-size: 14px;
            line-height: 1.65;
        }

        .loan-hero-buttons {
            flex-direction: column;
            width: 100%;
            margin-top: 32px;
        }

        .loan-hero-btn {
            width: 100%;
            max-width: 220px;
            min-height: 50px;
        }

        .loan-hero-partner {
            margin-top: 40px;
        }

        .loan-hero-line {
            display: none;
        }

        .loan-hero-partner-text {
            width: 100%;
            max-width: 310px;
            margin: 0 auto;
            padding: 10px 18px;
            font-size: 12px;
        }

        .loan-hero-image-box {
            align-items: flex-end;
        }

        .loan-hero-image {
            width: 85%;
            max-width: 350px;
        }
    }

    /* Small mobile */
    @media (max-width: 380px) {
        .loan-hero {
            padding-right: 18px;
            padding-left: 18px;
        }

        .loan-hero-title {
            font-size: 28px;
        }

        .loan-hero-description {
            font-size: 13px;
        }

        .loan-hero-partner-text {
            font-size: 11px;
        }
    }