        :root {
            --navy: #0F172A;
            --trust-blue: #1E40AF;
            --teal: #14B8A6;
            --soft-white: #F8FAFC;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--soft-white);
            color: #334155;
            scroll-behavior: smooth;
        }
        h1, h2, h3, .serif { font-family: 'Playfair Display', serif; }
        .manrope { font-family: 'Manrope', sans-serif; }

        .glass-nav {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .loan-card {
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .loan-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .page-section { display: none; animation: fadeIn 0.6s ease-out forwards; }
        .active-page { display: block; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .sticky-filter { position: sticky; top: 100px; }
        
        .compare-checkbox:checked + label { background-color: var(--trust-blue); color: white; }

        .gradient-bg {
            background: linear-gradient(135deg, #0F172A 0%, #1E40AF 100%);
        }

        .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
        .accordion-item:hover .accordion-content { max-height: 200px; }
    