
        /* CSS Variables for Design System */

        /* import font geist */
        @import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;700&display=swap');
        :root {
            --font-size: 14px;
            --background: #ffffff;
            --foreground: oklch(0.145 0 0);
            --card: #ffffff;
            --card-foreground: oklch(0.145 0 0);
            --popover: oklch(1 0 0);
            --popover-foreground: oklch(0.145 0 0);
            /* --primary: #030213; */
            --primary: #144ea9;
            --primary-foreground: oklch(1 0 0);
            --secondary: oklch(0.95 0.0058 264.53);
            --secondary-foreground: #030213;
            --muted: #ececf0;
            --muted-foreground: #717182;
            --accent: #e9ebef;
            --accent-foreground: #030213;
            --destructive: #d4183d;
            --destructive-foreground: #ffffff;
            --border: rgba(0, 0, 0, 0.1);
            --input: transparent;
            --input-background: #f3f3f5;
            --switch-background: #cbced4;
            --font-weight-bold: 700;
            --font-weight-medium: 500;
            --font-weight-normal: 400;
            --ring: oklch(0.708 0 0);
            --radius: 0.625rem;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: var(--font-size);
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--background);
            color: var(--foreground);
            font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
        }

        /* Typography */
        h1 {
            font-size: 2.5rem;
            font-weight: var(--font-weight-bold);
            line-height: 1.2;
        }

        h2 {
            font-size: 2.25rem;
            font-weight: var(--font-weight-bold);
            line-height: 1.3;
        }

        h3 {
            font-size: 1.5rem;
            font-weight: var(--font-weight-bold);
            line-height: 1.4;
        }

        h4 {
            font-size: 1.25rem;
            font-weight: var(--font-weight-bold);
            line-height: 1.4;
        }

        p {
            font-size: 1rem;
            font-weight: var(--font-weight-normal);
            line-height: 1.6;
        }

        /* Utility Classes */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section {
            padding: 5rem 1rem;
        }

        .text-center {
            text-align: center;
        }

        .text-primary {
            color: var(--primary);
        }

        .text-white {
            color: white;
        }

        .text-muted {
            color: var(--muted-foreground);
        }

        .bg-primary {
            background-color: var(--primary);
        }

        .bg-muted {
            background-color: var(--muted);
        }

        .bg-card {
            background-color: var(--card);
        }

        /* Grid System */
        .grid {
            display: grid;
            gap: 2rem;
        }

        .grid-cols-1 {
            grid-template-columns: 1fr;
        }

        .grid-cols-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .grid-cols-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .grid-cols-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        /* Flexbox Utilities */
        .flex {
            display: flex;
        }

        .flex-col {
            flex-direction: column;
        }

        .items-center {
            align-items: center;
        }

        .justify-center {
            justify-content: center;
        }

        .justify-between {
            justify-content: space-between;
        }

        .space-x-4 > * + * {
            margin-left: 1rem;
        }

        .space-y-4 > * + * {
            margin-top: 1rem;
        }

        .space-y-6 > * + * {
            margin-top: 1.5rem;
        }

        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: var(--font-weight-medium);
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--primary-foreground);
        }

        .btn-primary:hover {
            background-color: rgba(3, 2, 19, 0.9);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-color: rgba(255,255,255,0.3); color: white; background-color: rgba(255,255,255,0.1);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--primary-foreground);
        }

        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.125rem;
        }

        .btn-white {
            background-color: white;
            color: var(--primary);
        }

        .btn-white:hover {
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--primary);
        }

        /* Card Styles */
        .card {
            background-color: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 4rem;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: var(--font-weight-bold);
            color: var(--primary);
            text-decoration: none;
            padding-top: .75rem;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            color: var(--foreground);
            text-decoration: none;
            padding: 0.5rem 0.75rem;
            border-radius: 0.375rem;
            transition: color 0.2s ease;
            font-weight: 600;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--primary) 0%, #1a1a2e 100%);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(3, 2, 19, 0.9) 0%, rgba(3, 2, 19, 0.7) 50%, rgba(3, 2, 19, 0.4) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 4rem 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 2rem;margin-top: 2rem;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.875rem;
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 6rem);
            font-weight: var(--font-weight-bold);
            color: white;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: clamp(1.25rem, 4vw, 2.5rem);
            color: #bfdbfe;
            font-weight: var(--font-weight-normal);
            margin-bottom: 3rem;
        }

        .hero-description {
            font-size: clamp(1rem, 2vw, 1.5rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            /* max-width: 4rem; */
            font-size: large;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            justify-content: center;
            margin-bottom: 4rem;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 64rem;
            margin: 0 auto;
        }

        .hero-feature {
            text-align: center;
        }

        .hero-feature-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .hero-feature-title {
            color: rgba(255, 255, 255, 0.9);
            font-weight: var(--font-weight-medium);
            margin-bottom: 0.25rem;
        }

        .hero-feature-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .scroll-mouse {
            width: 1.5rem;
            height: 2.5rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 1.25rem;
            display: flex;
            justify-content: center;
            animation: bounce 2s infinite;
        }

        .scroll-wheel {
            width: 0.25rem;
            height: 0.75rem;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 0.125rem;
            margin-top: 0.5rem;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Section Styles */
        .section-title {
            font-size: 2.5rem;
            color: black;
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-description {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            text-align: center;
            margin-bottom: 4rem;
            max-width: 56rem;
            margin-left: auto;
            margin-right: auto;
        }

        /* Feature Cards */
        .feature-card {
            background-color: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .feature-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 4rem;
            height: 4rem;
            background-color: rgba(3, 2, 19, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
            color: var(--primary);
            font-size: 2rem;
        }

        .feature-title {
            font-size: 1.25rem;
            color: var(--card-foreground);
            margin-bottom: 1rem;
            text-align: center;
        }

        .feature-description {
            color: var(--muted-foreground);
            line-height: 1.6;
            text-align: center;
        }

        /* Impact List */
        .impact-list {
            list-style: none;
            padding: 0;
        }

        .impact-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            color: var(--muted-foreground);
        }

        .impact-bullet {
            width: 0.375rem;
            height: 0.375rem;
            background-color: var(--primary);
            border-radius: 50%;
            margin-right: 0.75rem;
            flex-shrink: 0;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: var(--font-weight-medium);
            color: var(--foreground);
            margin-bottom: 0.5rem;
        }

        .form-input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background-color: var(--input-background);
            font-size: 1rem;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(3, 2, 19, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 6rem;
        }

        /* FAQ Styles */
        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.5rem;
            text-align: left;
            font-size: 1.125rem;
            font-weight: var(--font-weight-medium);
            color: var(--foreground);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.2s ease;
        }

        .faq-question:hover {
            background-color: var(--muted);
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: var(--muted-foreground);
            line-height: 1.6;
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

        .faq-icon {
            transition: transform 0.2s ease;
        }

        .faq-icon.active {
            transform: rotate(180deg);
        }

        /* Footer */
        .footer {
            background-color: black;
            color: var(--primary-foreground);
            padding: 3rem 1rem;
        }

        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3,
        .footer-section h4 {
            margin-bottom: 1rem;
            color: var(--primary-foreground);
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
            transition: color 0.2s ease;
        }

        .footer-section a:hover {
            color: var(--primary-foreground);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive Design */
        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }

            .nav-links {
                display: flex;
            }
        }

        @media (min-width: 768px) {
            .grid-md-2 {
                grid-template-columns: repeat(2, 1fr);
            }

            .grid-md-3 {
                grid-template-columns: repeat(3, 1fr);
            }
            .grid-md-4 {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .grid-lg-2 {
                grid-template-columns: repeat(2, 1fr);
            }

            .grid-lg-4 {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Utility Classes for Spacing */
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-12 { margin-bottom: 3rem; }
        .mb-16 { margin-bottom: 4rem; }
        .mt-4 { margin-top: 1rem; }
        .mt-8 { margin-top: 2rem; }
        .pt-16 { padding-top: 4rem; }
        .py-20 { padding-top: 5rem; padding-bottom: 5rem; }

        /* Background Utilities */
        .bg-muted-light {
            background-color: rgba(236, 236, 240, 0.3);
        }

        .bg-gradient-primary {
            background: linear-gradient(135deg, rgba(3, 2, 19, 0.05) 0%, rgba(3, 2, 19, 0.1) 100%);
        }
.wcu-icon{
    width: 3rem; height: 3rem; margin: 0; margin-bottom: 1rem; font-size: 1.5rem;
}