
        :root {
            --brand: #2563eb;
            --brand-light: #3b82f6;
            --brand-dark: #1d4ed8;
            --accent: #22d3ee;
            --text: #0f172a;
            --text-light: #334155;
            --muted: #64748b;
            --light: #f8fafc;
            --lighter: #f1f5f9;
            --bg: #0b1220;
            --border: #e2e8f0;
            --success: #10b981;
            --radius: 12px;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        body {
            font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
        }
        
        .navbar {
            padding: 1rem 0;
            background: #fff;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
        }
        
        .btn-brand {
            background: var(--brand);
            color: #fff;
            font-weight: 600;
            padding: 0.625rem 1.5rem;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        
        .btn-brand:hover {
            background: var(--brand-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Contact form submit: prominent button (override layout navbar .btn-brand) */
        .contact-section .btn-brand,
        .contact-card .btn-brand {
            background: var(--brand) !important;
            color: #fff !important;
            border: none !important;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
            transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .contact-section .btn-brand:hover,
        .contact-card .btn-brand:hover {
            background: var(--brand-dark) !important;
            color: #fff !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
        }

        /* Contact "Send Message" CTA button — always prominent */
        #contactForm .btn-contact-submit {
            background: #000 !important;
            color: #fff !important;
            border: none !important;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
        }
        #contactForm .btn-contact-submit:hover {
            background: #1a1a1a !important;
            color: #fff !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }

        /* Partnerships "Send Inquiry" — same black button */
        #partnershipForm .btn-contact-submit {
            background: #000 !important;
            color: #fff !important;
            border: none !important;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
        }
        #partnershipForm .btn-contact-submit:hover {
            background: #1a1a1a !important;
            color: #fff !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }
        
        .btn-ghost {
            border: 1px solid var(--border);
            color: var(--text);
            font-weight: 600;
            padding: 0.625rem 1.5rem;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        
        .btn-ghost:hover {
            background: var(--lighter);
            border-color: #cbd5e1;
            transform: translateY(-2px);
        }
        
        .contact-hero {
            background: radial-gradient(1200px 400px at 20% -10%, rgba(34, 211, 238, 0.15), transparent 60%),
                        radial-gradient(1000px 500px at 110% 10%, rgba(37, 99, 235, 0.10), transparent 60%),
                        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            padding: 5rem 0 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563eb' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }
        
        .section-title {
            font-weight: 800;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .section-title.centered {
            text-align: center;
        }
        
        .section-title.centered::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--brand);
            margin: 1rem auto;
            border-radius: 2px;
        }
        
        .contact-section {
            padding: 5rem 0;
        }
        
        .contact-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            height: 100%;
        }

        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: #000;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-right: 1.25rem;
            flex-shrink: 0;
        }
        
        .form-control {
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        
        .form-control:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
        }
        
        .form-label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .error-message {
            color: #dc3545;
            font-size: 0.875em;
            margin-top: 0.25rem;
            display: none;
        }

        .is-invalid + .error-message {
            display: block;
        }
        
        .faq-section {
            background: var(--lighter);
            padding: 5rem 0;
        }
        
        .faq-item {
            background: #fff;
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border);
            transition: all 0.2s ease;
        }
        
        .faq-item:hover {
            border-color: var(--brand-light);
        }
        
        .faq-question {
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        
        .faq-question i {
            margin-right: 0.75rem;
            color: var(--brand);
        }
        
        .map-container {
            border-radius: var(--radius);
            overflow: hidden;
            height: 300px;
            box-shadow: var(--shadow);
        }
        
        .footer {
            background: var(--bg);
            color: #e2e8f0;
            padding: 4rem 0 2rem;
        }
        
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
        
        .footer-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .footer-desc {
            color: #94a3b8;
            margin-bottom: 2rem;
            max-width: 300px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
        }
        
        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }
        
        /* Follow Us: black background, white icons */
        .contact-card .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #000 !important;
            color: #fff !important;
            border: 1px solid rgba(0, 0, 0, 0.2) !important;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
            transition: all 0.2s ease;
        }
        
        .contact-card .social-links a:hover {
            background: #1a1a1a !important;
            color: #fff !important;
            border-color: rgba(0, 0, 0, 0.3) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #cbd5e1;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--brand);
            color: white;
            transform: translateY(-3px);
        }
        
        .made-with-love {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: #94a3b8;
        }
        
        @media (max-width: 768px) {
            .contact-hero {
                padding: 3rem 0 2rem;
                text-align: center;
            }
            
            .contact-section, .faq-section {
                padding: 3rem 0;
            }
            
            .contact-info-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .footer {
                text-align: center;
            }
            
            .footer-desc {
                margin-left: auto;
                margin-right: auto;
            }
            
            .social-links {
                justify-content: center;
            }
        }
    