        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #1a1a1a;
            line-height: 1.6;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        nav {
            padding: 24px 0;
            border-bottom: 1px solid #e5e7eb;
            background: #ffffff;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #ffffff;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: #1e3a5f;
            letter-spacing: -0.5px;
        }

        .logo-img {
            height: 115px;
            align: left;
        }

        .nav-links a {
            margin-left: 32px;
            text-decoration: none;
            color: #4b5563;
            font-weight: 700;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #bda46b;
            font-weight: 700;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
            color: #ffffff;
            padding: 60px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-content-thanks {
            position: relative;
            align-items: center;
            text-align: center;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-size: 20px;
            font-weight: 300;
            max-width: 650px;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.7;
        }

        .hero-subtitle-thanks {
            font-size: 20px;
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.7;
            align-items: center;
            text-align: center;
        }

        /* Hero Highlight Box */
        .hero-highlight {
            background: linear-gradient(135deg, rgba(196, 166, 89, 0.15) 0%, rgba(212, 182, 105, 0.1) 100%);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(196, 166, 89, 0.3);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .hero-highlight h3 {
            font-family: 'Libre Baskerville', serif;
            font-size: 24px;
            color: #ffffff;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 2px solid rgba(196, 166, 89, 0.4);
        }

        .hero-highlight ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hero-highlight li {
            font-size: 17px;
            color: #ffffff;
            padding: 14px 0;
            padding-left: 32px;
            position: relative;
            line-height: 1.5;
            opacity: 0.95;
        }

        .hero-highlight li:before {
            content: '◆';
            content: &#10209;
            position: absolute;
            left: 0;
            color: #c4a659;
            font-size: 14px;
            top: 14px;
        }


        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            background: #ffffff;
            color: #1e3a5f;
/*            background: #c4a659;
              color: #ffffff;            */
            text-decoration: none;
            font-weight: 600;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
            font-size: 16px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        /* Stats Section */
        .stats {
            background: #f8fafc;
            padding: 60px 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            color: #1e3a5f;
            margin-bottom: 8px;
        }

        .stat-item-h3-1 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: #1e3a5f;
            margin-bottom: 8px;
        }

        .stat-item p {
            color: #6b7280;
            font-size: 16px;
        }

        /* Services Section */
        .services {
            padding: 20px 0;
            text-align: center;
        }

        .section-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            color: #1e3a5f;
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 18px;
            color: #6b7280;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: #1e3a5f;
            padding: 40px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 28px;
        }

        .service-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
        }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            color: #bee1ec;
            margin-bottom: 16px;
            font-weight: 600;
            justify-content: center;
        }

        .service-card p {
            color: #dddddd;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
            color: #ffffff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at bottom right, rgba(196,166,89,0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .contact-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            margin-bottom: 24px;
        }

        .contact-info p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .contact-details {
            margin-bottom: 32px;
        }

        .contact-details h4 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.7;
            margin-bottom: 12px;
        }

        .contact-details a {
            color: #ffffff;
            text-decoration: none;
            font-size: 18px;
            display: block;
            margin-bottom: 8px;
            transition: opacity 0.3s;
        }

        .contact-details a:hover {
            opacity: 0.8;
        }

        .contact-form {
            background: #ffffff;
            padding: 20px;
            border-radius: 12px;
        }

        .form-group {
            margin-bottom: 12px;
        }

        .form-group label {
            display: block;
            color: #1e3a5f;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #1e3a5f;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e3a5f;
        }

        .form-group textarea {
            resize: none;
            min-height: 120px;
        }

        .submit-button {
            width: 100%;
            padding: 16px;
            background: #1e3a5f;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }

        .submit-button:hover {
            background: #2d5a8a;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #0f1f3a;
            color: #ffffff;
            padding: 40px 0;
            text-align: center;
        }

        footer p {
            opacity: 0.7;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            /* Fix hero gradient on mobile */
            .hero {
                background: linear-gradient(to bottom, #1e3a5f 0%, #2d5a8a 100%);
            }

            .hero::before {
                background: radial-gradient(ellipse at top center, rgba(255,255,255,0.08) 0%, transparent 50%);
            }

            .contact {
                background: linear-gradient(to bottom, #1e3a5f 0%, #2d5a8a 100%);
            }

            .contact::before {
                background: radial-gradient(ellipse at bottom center, rgba(196,166,89,0.12) 0%, transparent 50%);
            }

            .hero h1 {
                font-size: 38px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-highlight {
                padding: 30px;
            }

            .hero-highlight h3 {
                font-size: 20px;
            }

            .hero-highlight li {
                font-size: 15px;
                padding: 12px 0;
                padding-left: 28px;
                line-height: 1;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .nav-links {
                display: none;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .logo-text .fbre {
                font-size: 22px;
            }

            .logo-text .advisors {
                font-size: 11px;
                letter-spacing: 2px;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .contact-info h2 {
                font-size: 32px;
            }
        }

