
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navigation */
        nav {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a3c6e;
        }
        
        .logo span {
            color: #4a9eff;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #4a9eff;
        }
        
        .nav-buttons button {
            margin-left: 15px;
            padding: 8px 20px;
            border-radius: 4px;
            border: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-login {
            background-color: transparent;
            color: #1a3c6e;
            border: 1px solid #1a3c6e;
        }
        
        .btn-getstarted {
            background-color: #1a3c6e;
            color: white;
        }
        
        .btn-login:hover {
            background-color: rgba(26, 60, 110, 0.05);
        }
        
        .btn-getstarted:hover {
            background-color: #0f2a52;
        }
        
        /* Hero Section */
        .hero {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-content {
            flex: 1;
            padding-right: 40px;
        }
        
        .hero-image {
            flex: 1;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .hero h1 {
            font-size: 3rem;
            color: #1a3c6e;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
        }
        
        .btn-primary {
            display: inline-block;
            padding: 12px 30px;
            background-color: #4a9eff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #1a3c6e;
        }
        
        /* Section Styling */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #1a3c6e;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Services */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: #4a9eff;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.3rem;
            color: #1a3c6e;
            margin-bottom: 15px;
        }
        
        /* Why Choose Us */
        .features {
            background-color: #f9fbfe;
        }
        
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature {
            text-align: center;
            padding: 30px 20px;
        }
        
        .feature i {
            font-size: 2.5rem;
            color: #4a9eff;
            margin-bottom: 20px;
        }
        
        /* Testimonials */
        .testimonials-container {
            display: flex;
            overflow-x: auto;
            gap: 30px;
            padding: 20px 0;
        }
        
        .testimonial {
            min-width: 300px;
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .client-info {
            display: flex;
            align-items: center;
        }
        
        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #e4edf9;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: bold;
            color: #1a3c6e;
        }
        
        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: white;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1a3c6e;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* Contact Form */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: #1a3c6e;
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: #fff;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #4a9eff;
            color: #fff;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #4a9eff;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            transition: background-color 0.3s;
        }
        
        .social-icons a:hover {
            background-color: #4a9eff;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        .copyright a {
            color: #4a9eff;
            text-decoration: none;
        }
        
        /* Modal/Popup */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: white;
            width: 90%;
            max-width: 700px;
            max-height: 80vh;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .modal-header {
            background-color: #1a3c6e;
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h2 {
            font-size: 1.5rem;
        }
        
        .close-modal {
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            line-height: 1;
        }
        
        .modal-body {
            padding: 30px;
            overflow-y: auto;
            max-height: calc(80vh - 70px);
        }
        
        /* Confirmation Message */
        .confirmation {
            display: none;
            text-align: center;
            padding: 40px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .confirmation i {
            font-size: 4rem;
            color: #4CAF50;
            margin-bottom: 20px;
        }
        
        /* Page Navigation */
        .page-navigation {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 10px;
            z-index: 100;
        }
        
        .page-navigation a {
            display: block;
            width: 40px;
            height: 40px;
            text-align: center;
            line-height: 40px;
            margin: 5px 0;
            background-color: #f5f7fa;
            color: #1a3c6e;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .page-navigation a.active {
            background-color: #1a3c6e;
            color: white;
        }
        
        /* Page Styles */
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
        
        /* Unique Page Styles */
        /* Page 1 - Modern Blue */
        .page-1 .logo, .page-1 h1, .page-1 h2, .page-1 h3 {
            color: #1a3c6e;
        }
        
        .page-1 .btn-primary, .page-1 .btn-getstarted {
            background-color: #4a9eff;
        }
        
        .page-1 .btn-primary:hover, .page-1 .btn-getstarted:hover {
            background-color: #1a3c6e;
        }
        
        /* Page 2 - Green Finance */
        .page-2 {
            background-color: #f9fdf9;
        }
        
        .page-2 nav, .page-2 .service-card, .page-2 .testimonial, .page-2 .contact-form {
            background-color: white;
        }
        
        .page-2 .logo, .page-2 h1, .page-2 h2, .page-2 h3 {
            color: #1a6e1a;
        }
        
        .page-2 .btn-primary, .page-2 .btn-getstarted {
            background-color: #2ecc71;
        }
        
        .page-2 .btn-primary:hover, .page-2 .btn-getstarted:hover {
            background-color: #27ae60;
        }
        
        .page-2 footer {
            background-color: #1a6e1a;
        }
        
        /* Page 3 - Purple Wealth */
        .page-3 {
            background-color: #f9f7fd;
        }
        
        .page-3 nav, .page-3 .service-card, .page-3 .testimonial, .page-3 .contact-form {
            background-color: white;
        }
        
        .page-3 .logo, .page-3 h1, .page-3 h2, .page-3 h3 {
            color: #6e1a6e;
        }
        
        .page-3 .btn-primary, .page-3 .btn-getstarted {
            background-color: #9b59b6;
        }
        
        .page-3 .btn-primary:hover, .page-3 .btn-getstarted:hover {
            background-color: #8e44ad;
        }
        
        .page-3 footer {
            background-color: #6e1a6e;
        }
        
        /* Page 4 - Gold Investment */
        .page-4 {
            background-color: #fdf9f5;
        }
        
        .page-4 nav, .page-4 .service-card, .page-4 .testimonial, .page-4 .contact-form {
            background-color: white;
        }
        
        .page-4 .logo, .page-4 h1, .page-4 h2, .page-4 h3 {
            color: #b8860b;
        }
        
        .page-4 .btn-primary, .page-4 .btn-getstarted {
            background-color: #daa520;
        }
        
        .page-4 .btn-primary:hover, .page-4 .btn-getstarted:hover {
            background-color: #b8860b;
        }
        
        .page-4 footer {
            background-color: #b8860b;
        }
        
        /* Page 5 - Dark Finance */
        .page-5 {
            background-color: #1a1a2e;
            color: #e6e6e6;
        }
        
        .page-5 nav, .page-5 .service-card, .page-5 .testimonial, .page-5 .contact-form {
            background-color: #16213e;
            color: #e6e6e6;
        }
        
        .page-5 .logo, .page-5 h1, .page-5 h2, .page-5 h3 {
            color: #4cc9f0;
        }
        
        .page-5 .btn-primary, .page-5 .btn-getstarted {
            background-color: #4361ee;
        }
        
        .page-5 .btn-primary:hover, .page-5 .btn-getstarted:hover {
            background-color: #3a56d4;
        }
        
        .page-5 footer {
            background-color: #0f3460;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
            }
            
            .hero-content {
                padding-right: 0;
                margin-bottom: 50px;
                text-align: center;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .services-container {
                grid-template-columns: 1fr;
            }
        }