        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20 20px;
        }

        /* Header Styles */ 
        header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
 
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 191, 255, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: rgb(36,147,239);
            text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #b8b8b8;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links a:hover {
            color: #00BFFF;
            background: rgba(0, 191, 255, 0.1);
            box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
        }

        .nav-links a.active {
            color: #00BFFF;
            background: rgba(0, 191, 255, 0.2);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #00BFFF;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Main Content */
        main {
            margin-top: 120px; /* Increased space between header and body */
            padding: 2rem 0;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 4rem 0;
            background: radial-gradient(circle at center, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffffff, #00BFFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #b8b8b8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(45deg, #00BFFF, #0080FF);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 191, 255, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: #00BFFF;
            border: 2px solid #00BFFF;
        }

        .btn-secondary:hover {
            background: #00BFFF;
            color: white;
            transform: translateY(-2px);
        }

        /* Loan Calculator Section */
        .calculator-section {
            padding: 4rem 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .calculator-container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(184, 184, 184, 0.2);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .calculator-header {
            background: linear-gradient(45deg, #00BFFF, #0080FF);
            padding: 2rem;
            text-align: center;
        }

        .calculator-header h2 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .calculator-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .calculator-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .calculator-inputs {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
        }

        .calculator-results {
            padding: 2rem;
            background: rgba(184, 184, 184, 0.05);
            border-left: 1px solid rgba(184, 184, 184, 0.2);
        }

        .input-group {
            margin-bottom: 2rem;
        }

        .input-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #00BFFF;
            font-size: 1.1rem;
        }

        .input-wrapper {
            position: relative;
        }

        .input-group input[type="number"],
        .input-group input[type="range"] {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(184, 184, 184, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .input-group input[type="number"]:focus {
            outline: none;
            border-color: #00BFFF;
            box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
        }

        .input-group input[type="range"] {
            height: 8px;
            padding: 0;
            background: rgba(184, 184, 184, 0.2);
            border: none;
            border-radius: 4px;
            -webkit-appearance: none;
        }

        .input-group input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #00BFFF;
            cursor: pointer;
            box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
        }

        .input-group input[type="range"]::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #00BFFF;
            cursor: pointer;
            border: none;
            box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
        }

        .range-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: #b8b8b8;
        }

        .input-value {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #00BFFF;
            font-weight: bold;
            pointer-events: none;
        }

        .result-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            border: 1px solid rgba(184, 184, 184, 0.2);
            transition: all 0.3s ease;
        }

        .result-item:hover {
            border-color: #00BFFF;
            box-shadow: 0 5px 15px rgba(0, 191, 255, 0.2);
        }

        .result-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            color: #b8b8b8;
            margin-bottom: 0.5rem;
        }

        .result-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: #00BFFF;
            text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
        }

        .payment-breakdown {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(184, 184, 184, 0.2);
        }

        .breakdown-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.2rem;
            color: #00BFFF;
            margin-bottom: 1rem;
        }

        .breakdown-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(184, 184, 184, 0.1);
            color: #b8b8b8;
        }

        .breakdown-item:last-child {
            border-bottom: none;
            font-weight: bold;
            color: #00BFFF;
        }

        /* Amortization Table */
        .amortization-section {
            padding: 4rem 0;
            background: rgba(255, 255, 255, 0.01);
        }

        .amortization-container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(184, 184, 184, 0.2);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .amortization-header {
            background: linear-gradient(45deg, #0080FF, #00BFFF);
            padding: 2rem;
            text-align: center;
        }

        .amortization-header h2 {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .table-container {
            padding: 2rem;
            max-height: 600px;
            overflow-y: auto;
        }

        .amortization-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            overflow: hidden;
        }

        .amortization-table th {
            background: rgba(184, 184, 184, 0.15);
            color: #b8b8b8;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid rgba(184, 184, 184, 0.3);
        }

        .amortization-table th i {
            margin-right: 0.5rem;
            color: #00BFFF;
        }

        .amortization-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(184, 184, 184, 0.1);
            color: #b8b8b8;
        }

        .amortization-table tr:hover {
            background: rgba(0, 191, 255, 0.05);
        }

        .amortization-table tr:nth-child(even) {
            background: rgba(184, 184, 184, 0.02);
        }

        .table-summary {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .summary-item {
            background: rgba(184, 184, 184, 0.08);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(184, 184, 184, 0.2);
            text-align: center;
        }

        .summary-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: #b8b8b8;
            margin-bottom: 0.5rem;
        }

        .summary-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: #00BFFF;
        }

        /* Features Section */
        .features {
            padding: 4rem 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .features h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #00BFFF;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(184, 184, 184, 0.2);
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: #00BFFF;
            box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            color: #00BFFF;
            margin-bottom: 1rem;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .feature-card p {
            color: #b8b8b8;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 2rem 0;
            border-top: 1px solid rgba(184, 184, 184, 0.3);
            margin-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: #00BFFF;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-section p, .footer-section a {
            color: #b8b8b8;
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-section a:hover {
            color: #00BFFF;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(184, 184, 184, 0.2);
            color: #888;
        }

        /* Stats Section */
        .stats {
            padding: 3rem 0;
            background: rgba(184, 184, 184, 0.03);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #00BFFF;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #b8b8b8;
            font-size: 1.1rem;
        }

        .stat-icon {
            font-size: 2rem;
            color: #00BFFF;
            margin-bottom: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                padding: 1rem;
                border-top: 1px solid #00BFFF;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .calculator-content {
                grid-template-columns: 1fr;
            }

            .calculator-results {
                border-left: none;
                border-top: 1px solid rgba(184, 184, 184, 0.2);
            }

            .calculator-header h2 {
                font-size: 2rem;
                flex-direction: column;
                gap: 0.5rem;
            }

            .amortization-table {
                font-size: 0.9rem;
            }

            .amortization-table th,
            .amortization-table td {
                padding: 0.5rem;
            }

            .table-summary {
                grid-template-columns: 1fr;
            }

            main {
                margin-top: 100px; /* Adjusted for mobile */
            }
        }

        /* Animations */
        @keyframes glow {
            0% { box-shadow: 0 0 5px rgba(0, 191, 255, 0.5); }
            50% { box-shadow: 0 0 20px rgba(0, 191, 255, 0.8); }
            100% { box-shadow: 0 0 5px rgba(0, 191, 255, 0.5); }
        }

        .glow {
            animation: glow 2s infinite;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Custom scrollbar for table */
        .table-container::-webkit-scrollbar {
            width: 8px;
        }

        .table-container::-webkit-scrollbar-track {
            background: rgba(184, 184, 184, 0.1);
            border-radius: 4px;
        }

        .table-container::-webkit-scrollbar-thumb {
            background: #00BFFF;
            border-radius: 4px;
        }

        .table-container::-webkit-scrollbar-thumb:hover {
            background: #0080FF;
        }
