
        :root {
            --deep-blue: #0A2463;
            --investment-orange: #D45D00;
            --light-blue: #3E78B2;
            --light-gray: #F5F7FA;
            --medium-gray: #E1E5EB;
            --dark-gray: #5A6575;
            --white: #FFFFFF;
            --shadow: 0 8px 24px rgba(0, 0, 46, 0.08);
            --radius: 12px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Corbel', 'serif' !important;
            color: #333;
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Monteserat', serif !important;
            font-weight: 600;
            color: var(--deep-blue);
            line-height: 1.3;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 12px rgba(0, 0, 46, 0.05);
            z-index: 1000;
            padding: 18px 0;
            transition: var(--transition);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--deep-blue);
            text-decoration: none;
        }

        .logo-icon {
            background: var(--deep-blue);
            color: var(--white);
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 32px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--deep-blue);
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            padding: 8px 0;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--investment-orange);
        }

        .nav-links a.active {
            color: var(--investment-orange);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--investment-orange);
        }

        .nav-cta {
            background-color: var(--investment-orange);
            color: var(--white);
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--investment-orange);
        }

        .nav-cta:hover {
            background-color: transparent;
            color: var(--investment-orange);
        }

        /* Hero Section */
        .hero {
            padding: 180px 0 120px;
            background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 93, 0, 0.05) 0%, rgba(212, 93, 0, 0) 70%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
        }

        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--dark-gray);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .hero-cta {
            display: inline-block;
            background-color: var(--investment-orange);
            color: var(--white);
            padding: 16px 36px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(212, 93, 0, 0.2);
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(212, 93, 0, 0.25);
        }

        .value-props {
            display: flex;
            margin-top: 80px;
            gap: 30px;
        }

        .value-prop {
            flex: 1;
            background: var(--white);
            padding: 28px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .value-prop:hover {
            transform: translateY(-5px);
        }

        .value-prop i {
            font-size: 2.5rem;
            color: var(--investment-orange);
            margin-bottom: 20px;
        }

        .value-prop h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
        }

        /* Funds Section */
        .section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .section-title p {
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .funds-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .fund-card {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
        }

        .fund-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 46, 0.12);
        }

        .fund-header {
            padding: 24px;
            border-bottom: 1px solid var(--medium-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .fund-header h3 {
            font-size: 1.4rem;
            margin: 0;
        }

        .risk-badge {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .risk-low {
            background-color: rgba(46, 204, 113, 0.15);
            color: #27ae60;
        }

        .risk-income {
            background-color: rgba(241, 196, 15, 0.15);
            color: #f39c12;
        }

        .risk-growth {
            background-color: rgba(231, 76, 60, 0.15);
            color: #c0392b;
        }

        .fund-body {
            padding: 24px;
        }

        .fund-description {
            color: var(--dark-gray);
            margin-bottom: 24px;
        }

        .fund-details {
            margin-bottom: 20px;
        }

        .fund-detail {
            display: flex;
            margin-bottom: 12px;
        }

        .fund-detail i {
            color: var(--investment-orange);
            margin-right: 12px;
            width: 20px;
        }

        .fund-investor {
            background-color: var(--light-gray);
            padding: 16px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .fund-investor p {
            font-size: 0.9rem;
            color: var(--dark-gray);
        }

        /* Footer */
        footer {
            background-color: var(--deep-blue);
            color: var(--white);
            padding: 80px 0 40px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .footer-logo .logo-icon {
            background: var(--white);
            color: var(--deep-blue);
        }

        .footer-about {
            max-width: 300px;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 24px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
        }

        .footer-links h4 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 12px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--investment-orange);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Page Styles */
        .page-content {
            padding: 160px 0 100px;
        }

        .page-hero {
            background: linear-gradient(135deg, var(--deep-blue) 0%, #1a3a8f 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .page-hero h1 {
            color: white;
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .page-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Page */
        .about-section {
            margin-bottom: 80px;
        }

        .about-section h2 {
            font-size: 2.2rem;
            margin-bottom: 24px;
        }

        .about-section p {
            font-size: 1.1rem;
            color: var(--dark-gray);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .philosophy-card {
            background: var(--light-gray);
            padding: 36px;
            border-radius: var(--radius);
            border-left: 4px solid var(--investment-orange);
        }

        .philosophy-card h3 {
            margin-bottom: 16px;
            font-size: 1.5rem;
        }

        /* Onboarding Page */
        .onboarding-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .onboarding-header {
            background: var(--deep-blue);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .onboarding-header h2 {
            color: white;
            margin-bottom: 10px;
        }

        .onboarding-steps {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .step {
            display: flex;
            align-items: center;
            margin: 0 15px;
            color: rgba(255, 255, 255, 0.6);
        }

        .step.active {
            color: white;
        }

        .step-number {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-weight: 600;
        }

        .step.active .step-number {
            background: var(--investment-orange);
        }

        .onboarding-form {
            padding: 50px;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--deep-blue);
        }

        .form-control {
            width: 100%;
            padding: 16px;
            border: 1px solid var(--medium-gray);
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--investment-orange);
            box-shadow: 0 0 0 3px rgba(212, 93, 0, 0.1);
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        .form-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }

        .btn {
            padding: 14px 32px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-family: 'Inter', sans-serif;
        }

        .btn-primary {
            background-color: var(--investment-orange);
            color: white;
        }

        .btn-primary:hover {
            background-color: #b35000;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--dark-gray);
            border: 1px solid var(--medium-gray);
        }

        .btn-secondary:hover {
            background-color: var(--light-gray);
        }

        /* Center Invest buttons inside fund cards */
        .fund-body .btn {
            display: block;
            margin: 15px auto 0;
        }

        /* Contact Page */
        .contact-container {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h3 {
            margin-bottom: 24px;
            font-size: 1.8rem;
        }

        .contact-detail {
            display: flex;
            margin-bottom: 24px;
            align-items: flex-start;
        }

        .contact-detail i {
            color: var(--investment-orange);
            font-size: 1.2rem;
            margin-right: 16px;
            margin-top: 4px;
        }

        .contact-form {
            flex: 1;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .funds-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .philosophy-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-container {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .navbar .container {
                flex-direction: column;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            .nav-links {
                margin-bottom: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .nav-links li {
                margin: 0 10px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .value-props {
                flex-direction: column;
            }
            
            .funds-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-about {
                margin-bottom: 40px;
            }
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--deep-blue);
            cursor: pointer;
        }

        @media (max-width: 576px) {
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .navbar .container {
                flex-direction: row;
            }
            
            .logo {
                margin-bottom: 0;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
                text-align: center;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

    /* About Page Styles */
.about-content {
    padding: 100px 0;
}

.about-section {
    margin-bottom: 100px;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--deep-blue);
}

.about-section p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 900px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--investment-orange);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 46, 0.12);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 500;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    border-left: 4px solid var(--investment-orange);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 46, 0.12);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 93, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.philosophy-icon i {
    font-size: 1.8rem;
    color: var(--investment-orange);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* Governance */
.governance-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.governance-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.governance-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.governance-item h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.governance-item h3 i {
    color: var(--investment-orange);
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 46, 0.12);
}

.team-img-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--investment-orange);
    font-size: 3rem;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.team-title {
    color: var(--investment-orange);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.team-bio {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid,
    .philosophy-grid,
    .governance-content,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .philosophy-grid,
    .governance-content,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
}

/* Page Hero (already in your CSS from contact page) */
.page-hero {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #1a3a8f 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}