
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        header {
            background: white;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 24px;
            font-weight: bold;
            color: #2c3e50;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            overflow: hidden;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: #2c3e50;
            margin: 3px 0;
            transition: 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #3498db;
        }

        .hero {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 42px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            font-family: Verdana, sans-serif;
        }

        .btn {
            display: inline-block;
            background: #0073e6;
            color: #fff;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            border-radius: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s ease;
        }

        .btn:hover {
            background: #005bb5;
        }

        .services {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .service-card p {
            color: #555;
            line-height: 1.8;
        }

        .contact-section {
            padding: 80px 20px;
            background: white;
        }

        .contact-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #2c3e50;
        }

        .contact-form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1000px;
            margin: 0 auto;
        }

       form {
        background: #111;
        padding: 30px;
        border-radius: 10px;
        width: 100%;
        max-width: 500px;
        box-shadow: 0 0 20px rgba(255,255,255,0.1);
        animation: fadeIn 1s ease-in-out;
    }

    .form-group {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    label {
        margin-bottom: 8px;
        font-weight: bold;
        color: #ccc;
    }

    input, select, textarea {
        padding: 12px;
        border: none;
        border-radius: 5px;
        background: #222;
        color: #fff;
        transition: all 0.3s ease;
    }

    input:focus, select:focus, textarea:focus {
        outline: none;
        background: #333;
        transform: scale(1.02);
        box-shadow: 0 0 10px rgba(255,255,255,0.2);
    }

    .submit-btn {
        background: #fff;
        color: #000;
        padding: 12px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .submit-btn:hover {
        background: #ccc;
        transform: translateY(-2px);
    }

    .form-results {
        margin-top: 20px;
        padding: 15px;
        background: #222;
        border-radius: 5px;
        animation: slideUp 0.8s ease;
    }

    @keyframes fadeIn {
        from {opacity: 0; transform: translateY(20px);}
        to {opacity: 1; transform: translateY(0);}
    }

    @keyframes slideUp {
        from {opacity: 0; transform: translateY(20px);}
        to {opacity: 1; transform: translateY(0);}
    }

        .calculator-box {
            background: #e8f4f8;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
        }

        .calculator-box h3 {
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .calc-result {
            background: white;
            padding: 20px;
            border-radius: 5px;
            margin: 15px 0;
        }

        .calc-result p {
            margin: 10px 0;
            font-size: 1.1rem;
        }

        .calc-result .amount {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c3e50;
        }

        .submit-btn {
            background: #2c3e50;
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            background: #1a252f;
        }

        .about-section {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #2c3e50;
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: #555;
        }

        .about-values {
            margin-top: 30px;
        }

        .about-values div {
            margin-bottom: 15px;
        }

        .about-values strong {
            color: #2c3e50;
        }

        .about-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .loans-section {
            padding: 80px 20px;
            background: white;
        }

        .loans-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .loans-subtitle {
            text-align: center;
            color: #555;
            margin-bottom: 50px;
        }

        .loans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .loan-card {
            text-align: center;
        }

        .loan-icon {
            width: 150px;
            height: 150px;
            background: #e8f4f8;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            overflow: hidden;
        }

        .loan-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .loan-card h3 {
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .amortization-table {
            max-width: 900px;
            margin: 50px auto;
            overflow-x: auto;
        }

        .amortization-table h3 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2rem;
            color: #2c3e50;
        }

        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        th {
            background: #2c3e50;
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 0.9rem;
        }

        td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid #ddd;
            font-size: 0.85rem;
        }

        tr:hover {
            background: #f8f9fa;
        }

        .table-highlight {
            background: #e8f4f8;
        }

        footer {
            background: #1a3a3a;
            color: white;
            padding: 40px 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section h3 {
            margin-bottom: 20px;
        }

        .footer-section p {
            margin-bottom: 10px;
        }

        .footer-logos {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-logo {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #2c3e50;
        }

        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            nav.active {
                max-height: 400px;
            }

            nav ul {
                flex-direction: column;
                gap: 0;
                padding: 20px;
            }

            nav li {
                border-bottom: 1px solid #eee;
            }

            nav a {
                display: block;
                padding: 15px 0;
            }

            .logo {
                gap: 10px;
                font-size: 18px;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
            }

            .hero {
                height: 400px;
            }

            .hero-content h1 {
                font-size: 24px;
                letter-spacing: 1px;
            }

            .hero-content p {
                font-size: 14px;
            }

            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .contact-section h2 {
                font-size: 1.8rem;
            }

            .contact-form-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-text h2 {
                font-size: 1.8rem;
            }

            .about-image {
                height: 250px;
            }

            .loans-section h2 {
                font-size: 1.8rem;
            }

            .services-grid,
            .loans-grid {
                grid-template-columns: 1fr;
            }

            .service-card,
            .loan-card {
                padding: 30px 20px;
            }

            .amortization-table h3 {
                font-size: 1.5rem;
            }

            .amortization-table {
                margin: 30px 0;
            }

            th {
                padding: 10px 5px;
                font-size: 0.75rem;
            }

            td {
                padding: 8px 5px;
                font-size: 0.75rem;
            }

            .calc-result .amount {
                font-size: 1.4rem;
            }

            .footer-section h3 {
                font-size: 1.2rem;
            }

            .footer-logo {
                width: 60px;
                height: 60px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 20px;
            }

            .contact-section h2,
            .about-text h2,
            .loans-section h2 {
                font-size: 1.5rem;
            }

            .calculator-box {
                padding: 20px;
            }

            table {
                min-width: 500px;
            }

            th, td {
                font-size: 0.7rem;
                padding: 8px 3px;
            }

            .table-highlight td {
                font-weight: bold;
            }
        }
