
        @font-face {
            font-family: 'Valley Sans';
            src: url('Font/ValleySans-Regular.ttf') format('truetype'),
                url('ValleySans-Regular.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Valley Sans';
            src: url('Font/ValleySans-Medium.ttf') format('truetype'),
                url('ValleySans-Medium.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-weight: 400;
            color: #1a202c;
            background-color: #fafbfc;
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .logo {
            font-family: 'Valley Sans', 'Plus Jakarta Sans', sans-serif;
            font-weight: 400;
        }

        h2,
        h3,
        h4 {
            font-weight: 500;
        }

        .section-container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Floating Pill Navigation Bar */
        .header {
            position: fixed;
            top: 1rem;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-radius: 9999px;
            z-index: 1000;
            border: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-img {
            height: 28px;
            width: auto;
            max-width: 150px;
            object-fit: contain;
            display: block;
            filter: brightness(0);
            transition: opacity 0.2s ease;
        }

        .logo-img:hover {
            opacity: 0.85;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #475569;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #0d9488;
        }

        .nav-actions {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .nav-btn-outline,
        .nav-btn-solid,
        .primary-btn {
            font-family: 'DM Sans', sans-serif;
            font-weight: 500;
            text-decoration: none;
            padding: 0.5rem 1.1rem;
            border-radius: 9999px;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn-outline {
            background: transparent;
            color: #0f172a;
            border: 1px solid #cbd5e1;
        }

        .nav-btn-outline:hover {
            border-color: #0d9488;
            color: #0d9488;
        }

        .nav-btn-solid,
        .primary-btn {
            background-color: #0d9488;
            color: #ffffff;
            border: 1px solid #0d9488;
        }

        .nav-btn-solid:hover,
        .primary-btn:hover {
            background-color: #0f766e;
            border-color: #0f766e;
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
        }

        /* Mobile Nav Toggle */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.35rem;
            color: #0f172a;
            cursor: pointer;
            padding: 0.25rem;
        }

        .mobile-nav-drawer {
            display: none;
            position: fixed;
            top: 5rem;
            left: 5%;
            width: 90%;
            background: #ffffff;
            border-radius: 1.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            padding: 1.5rem;
            z-index: 999;
            border: 1px solid #e2e8f0;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-nav-drawer.open {
            display: flex;
        }

        .mobile-nav-drawer a {
            text-decoration: none;
            color: #0f172a;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.5rem 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .mobile-nav-drawer a.active {
            color: #0d9488;
        }

        /* ==========================================================================
   Standardized Inner Page Hero Banner Blueprint
   ========================================================================== */
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            padding: 7rem 2rem 5rem;
            background-color: #f8fafc;
            background-image: radial-gradient(rgba(13, 148, 136, 0.1) 1px, transparent 1px), radial-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px), linear-gradient(135deg, #f8fafc 0%, #f0fdfa 50%, #e6fffa 100%);
            background-size: 20px 20px, 40px 40px, 100% 100%;
            background-position: 0 0, 10px 10px, 0 0;
            text-align: center;
            overflow: hidden;
            border-bottom: 1px solid #e2e8f0;
        }

        .hero-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(circle, rgba(45, 212, 191, 0.22) 0%, rgba(13, 148, 136, 0.05) 50%, transparent 80%);
            filter: blur(70px);
            pointer-events: none;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            max-width: 940px;
            margin: 0 auto;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #ccfbf1;
            color: #0f766e;
            padding: 0.45rem 1.25rem;
            border-radius: 9999px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            border: 1px solid #99f6e4;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 500;
            color: #0f172a;
            margin-bottom: 0.75rem;
            line-height: 1.15;
            letter-spacing: -0.01em;
        }

        .hero-content h1 .highlight {
            color: #0d9488;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: #475569;
            margin-bottom: 0.75rem;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.65;
        }

        .hero-cta-group {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.25rem;
        }

        .hero-primary-btn {
            background-color: #0d9488;
            color: #ffffff;
            border: 1px solid #0d9488;
            font-weight: 500;
            text-decoration: none;
            padding: 0.75rem 1.85rem;
            border-radius: 9999px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hero-primary-btn:hover {
            background-color: #0f766e;
            border-color: #0f766e;
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
        }

        /* ==========================================================================
   Contact Main Section (2-Column Layout)
   ========================================================================== */
        .contact-section {
            padding: 6rem 2rem 8rem;
            background-color: #fafbfc;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.25fr;
            gap: 4.5rem;
            align-items: start;
        }

        /* Left Column: Contact Details */
        .contact-details-col {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .contact-header h2 {
            font-size: 2.2rem;
            color: #0f172a;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .contact-header p {
            font-size: 1.05rem;
            color: #64748b;
            line-height: 1.6;
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
        }

        .contact-info-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            border-radius: 1rem;
            background: rgba(13, 148, 136, 0.08);
            color: #0d9488;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .contact-info-text strong {
            display: block;
            font-size: 1.05rem;
            color: #0f172a;
            margin-bottom: 0.25rem;
        }

        .contact-info-text p,
        .contact-info-text a {
            color: #475569;
            font-size: 0.95rem;
            text-decoration: none;
            line-height: 1.5;
        }

        .contact-info-text a:hover {
            color: #0d9488;
        }

        .contact-commitment-box {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 1.25rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        }

        .commitment-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.925rem;
            color: #334155;
            line-height: 1.45;
        }

        .commitment-item:last-child {
            margin-bottom: 0;
        }

        .commitment-item i {
            color: #0d9488;
            margin-top: 0.25rem;
            font-size: 0.9rem;
        }

        /* Right Column: Contact Form */
        .contact-form-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 1.5rem;
            padding: 3.5rem 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            position: relative;
        }

        .contact-form-card h3 {
            font-size: 1.6rem;
            color: #0f172a;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .contact-form-card p.form-subtitle {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 2.25rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: #334155;
            margin-bottom: 0.5rem;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 0.85rem 1.25rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.75rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            color: #0f172a;
            background: #ffffff;
            outline: none;
            transition: all 0.2s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: #0d9488;
            box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #94a3b8;
        }

        .form-submit-btn {
            width: 100%;
            padding: 1rem 1.5rem;
            background: #0d9488;
            color: #ffffff;
            border: 1px solid #0d9488;
            border-radius: 0.75rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .form-submit-btn:hover {
            background: #0f766e;
            border-color: #0f766e;
            box-shadow: 0 6px 18px rgba(13, 148, 136, 0.3);
            transform: translateY(-1px);
        }

        /* Submission Confirmation Card */
        .form-success-state {
            display: none;
            text-align: center;
            padding: 3rem 1rem;
        }

        .success-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: #ccfbf1;
            color: #0d9488;
            font-size: 2.2rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .form-success-state h3 {
            font-size: 1.75rem;
            color: #0f172a;
            margin-bottom: 0.75rem;
        }

        .form-success-state p {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
            max-width: 440px;
            margin: 0 auto 2rem;
        }

        /* ==========================================================================
   Footer Styles
   ========================================================================== */
        .site-footer {
            background: #090d16;
            color: #94a3b8;
            padding: 5rem 0 2.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-logo {
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
        }

        .footer-logo-img {
            height: 32px;
            width: auto;
            max-width: 170px;
            object-fit: contain;
            display: block;
        }

        .footer-col p {
            color: #94a3b8;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-socials a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: color 0.2s;
        }

        .footer-socials a:hover {
            color: #0d9488;
        }

        .footer-col h4 {
            font-family: 'Valley Sans', 'Plus Jakarta Sans', sans-serif;
            font-size: 1.05rem;
            color: #ffffff;
            margin-bottom: 1.25rem;
            font-weight: 500;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-col ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            padding-top: 1.5rem;
        }

        .footer-bottom-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: #64748b;
            margin: 0;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: #64748b;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .footer-legal a:hover {
            color: #cbd5e1;
        }

        @media(max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3.5rem;
            }
        }

        @media(max-width: 900px) {

            .nav-links,
            .nav-actions {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width: 640px) {
            .contact-form-card {
                padding: 2.5rem 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom-inner {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
    