                

        :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: 'Inter', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            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);
        }

        /* Page Hero */
        .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;
        }

        /* Contact Content */
        .contact-content {
            padding: 100px 0;
        }

        .contact-container {
            display: flex;
            gap: 60px;
        }

        .contact-info {
            flex: 1;
            background: var(--light-gray);
            border-radius: var(--radius);
            padding: 50px 40px;
            box-shadow: var(--shadow);
        }

        .contact-info h2 {
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .contact-details {
            margin-bottom: 50px;
        }

        .contact-detail {
            display: flex;
            margin-bottom: 32px;
            align-items: flex-start;
        }

        .contact-detail i {
            color: var(--investment-orange);
            font-size: 1.3rem;
            margin-right: 18px;
            margin-top: 4px;
            width: 24px;
        }

        .contact-detail h4 {
            font-size: 1.1rem;
            margin-bottom: 6px;
        }

        .contact-detail p {
            color: var(--dark-gray);
            line-height: 1.5;
        }

        .office-hours {
            background: var(--white);
            padding: 24px;
            border-radius: 8px;
            margin-top: 40px;
        }

        .office-hours h4 {
            margin-bottom: 16px;
            font-size: 1.1rem;
        }

        .office-hours p {
            color: var(--dark-gray);
            margin-bottom: 8px;
        }

        /* Contact Form */
        .contact-form {
            flex: 1;
            background: var(--white);
            border-radius: var(--radius);
            padding: 50px 40px;
            box-shadow: var(--shadow);
        }

        .contact-form h2 {
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 28px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--deep-blue);
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 16px 18px;
            border: 1px solid var(--medium-gray);
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background: var(--light-gray);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--investment-orange);
            box-shadow: 0 0 0 3px rgba(212, 93, 0, 0.1);
            background: var(--white);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        .btn {
            padding: 16px 36px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-family: 'Inter', sans-serif;
            display: inline-block;
            text-decoration: none;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--investment-orange);
            color: white;
        }

        .btn-primary:hover {
            background-color: #b35000;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 93, 0, 0.2);
        }

        .btn-block {
            display: block;
            width: 100%;
        }

        /* Map Section */
        .map-section {
            padding: 0 0 100px;
        }

        .map-container {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
            background: var(--light-gray);
            position: relative;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #eef2f7 0%, #d9e2ec 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--dark-gray);
        }

        .map-placeholder i {
            font-size: 4rem;
            color: var(--investment-orange);
            margin-bottom: 20px;
            opacity: 0.7;
        }

        .map-placeholder p {
            font-size: 1.1rem;
            max-width: 400px;
            text-align: center;
        }

        /* FAQ Section */
        .faq-section {
            padding: 0 0 100px;
        }

        .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;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .faq-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .faq-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 46, 0.12);
        }

        .faq-card h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: var(--deep-blue);
        }

        .faq-card p {
            color: var(--dark-gray);
            line-height: 1.6;
        }

        /* 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;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .contact-container {
                flex-direction: column;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @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;
            }
            
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-about {
                margin-bottom: 40px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

        /* 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;
            }
            
            .contact-info, .contact-form {
                padding: 30px 20px;
            }
            
            .page-hero {
                padding: 120px 0 60px;
            }
        }
    