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

      :root {
        --background: #ffffff;hero-bg-image
        --secondary: #f8f9fa;
        --accent: #00a86b;
        --border: #e5e7eb;
        --muted: #6b7280;
      }

      @media (prefers-color-scheme: dark) {
        :root {
          --background: #0f1419;
          --foreground: #f1f5f9;
          --primary: #3b82f6;
          --primary-dark: #2563eb;
          --secondary: #1e293b;
          --accent: #10b981;
          --border: #334155;
          --muted: #94a3b8;
        }
      }

      body {
        background: var(--background);
        color: var(--foreground);
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        line-height: 1.6;
      }

      html {
        scroll-behavior: smooth;
      }

      /* Navigation */
      nav {
        position: fixed;
        top: 5;
        left: 0;
        right: 0;
        z-index: 50;
        background: var(--background);
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(8px);
        background-color: rgba(255, 255, 255, 1);
        transition: box-shadow 0.3s ease;
      }

      @media (prefers-color-scheme: dark) {
        nav {
          background-color: rgba(15, 20, 25, 0.95);
        }
      }

      .nav-shadow {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      }

      .nav-container {
        max-width: 80rem;
        margin: 0 auto;
        padding: 10 1rem;
      }

      @media (min-width: 640px) {
        .nav-container {
          padding: 0 1.5rem;
        }
      }

      @media (min-width: 1024px) {
        .nav-container {
          padding: 0 2rem;
        }
      }

      .nav-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 5rem;
      }

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

      .logo-icon {
        width: 4.5rem;
        height: 4.5rem;
       /* border-radius: 0.5rem; */
    
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .logo-text {
        color: white;
        font-weight: 700;
        font-size: 1.125rem;
      }

      .logo-name {
        font-weight: 700;
        font-size: 1.125rem;
      }

      @media (max-width: 639px) {
        .logo-name {
          display: none;
        }
      }

      .nav-links {
        display: none;
        align-items: center;
        gap: 2rem;
      }

      @media (min-width: 768px) {
        .nav-links {
          display: flex;
        }
      }

      .nav-link {
        position: relative;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--foreground);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .nav-link::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
      }

      .nav-link:hover {
        color: var(--primary);
      }

      .nav-link:hover::after {
        width: 100%;
      }

      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
        background: var(--primary);
        color:#333;
        font-weight: 500;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.875rem;
      }

      .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
      }

      .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: 0.5rem;
        background: transparent;
        color: var(--foreground);
        font-weight: 500;
        text-decoration: none;
        border: 2px solid var(--border);
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .btn-secondary:hover {
        border-color: var(--primary);
        color: var(--primary);
      }

      .mobile-menu-btn {
        display: block;
        padding: 0.5rem;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--foreground);
      }

      @media (min-width: 768px) {
        .mobile-menu-btn {
          display: none;
        }
      }

      .mobile-menu {
        display: none;
        background: var(--background);
        border-top: 1px solid var(--border);
        padding: 1rem;
      }

      @media (min-width: 768px) {
        .mobile-menu {
          display: none !important;
        }
      }

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

      .mobile-link {
        display: block;
        padding: 0.5rem 0;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--foreground);
        text-decoration: none;
      }

      .mobile-link:hover {
        color: var(--primary);
      }

      /* Sections */
      .section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 6rem 1.5rem;
      }

      @media (max-width: 768px) {
        .section {
          padding: 4rem 1rem;
        }
      }

      .section-alt {
        background: var(--secondary);
      }

      .container {
        max-width: 72rem;
        margin: 0 auto;
        width: 100%;
      }

      /* Hero Section */
      .hero-section {
        background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 50%, var(--background) 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 4rem 1.5rem;
      }

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: rgba(0, 102, 204, 0.1);
        color: var(--primary);
        border-radius: 9999px;
        font-size: 2rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
      }

      .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
      }

      @media (min-width: 640px) {
        .hero-title {
          font-size: 3rem;
        }
      }

      @media (min-width: 768px) {
        .hero-title {
          font-size: 3.75rem;
        }
      }

      .hero-subtitle {
        font-size: 1.25rem;
        color: var(--muted);
        max-width: 48rem;
        margin: 0 auto 2rem;
        padding: 0 1rem;
      }

      @media (min-width: 640px) {
        .hero-subtitle {
          font-size: 1.5rem;
        }
      }

      .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      @media (min-width: 640px) {
        .hero-buttons {
          flex-direction: row;
          justify-content: center;
        }
      }

      /* Cards */
      .card {
        background: var(--secondary);
        border: 1px solid var(--border);
        border-radius: 0.75rem;
        padding: 2rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
      }

      .card-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
      }

      .card-icon-primary {
        background: rgba(0, 102, 204, 0.1);
        color: var(--primary);
      }

      .card-icon-accent {
        background: rgba(0, 168, 107, 0.1);
        color: var(--accent);
      }

      .card-title {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
      }

      .card-text {
        font-size: 0.875rem;
        color: var(--muted);
      }

      /* Grid layouts */
      .grid-2 {
        display: grid;
        gap: 1.5rem;
      }

      @media (min-width: 768px) {
        .grid-2 {
          grid-template-columns: repeat(2, 1fr);
        }
      }
	  
	        /* Grid layouts */
      .grid-1 {
        display: grid;
        gap: 1.5rem;
      }

      @media (min-width: 768px) {
        .grid-1 {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* Section titles */
      .section-label {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.5rem;
      }

      .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.2;
      }

      @media (min-width: 640px) {
        .section-title {
          font-size: 2.5rem;
        }
      }

      .section-description {
        font-size: 1.125rem;
        color: var(--muted);
   
      }

      @media (min-width: 640px) {
        .section-description {
          font-size: 1.25rem;
        }
      }

      .text-center {
        text-align: center;
      }

      .mb-12 {
        margin-bottom: 3rem;
      }

      /* Feature cards */
      .feature-card {
        background: var(--secondary);
        border: 1px solid var(--border);
        border-radius: 0.75rem;
        padding: 2rem;
        transition: all 0.3s ease;
      }

      .feature-card:hover {
        border-color: var(--primary);
        transform: translateY(-2px);
      }

      .feature-header {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
      }

      .feature-icon {
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .feature-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
      }

      .feature-text {
        font-size: 1rem;
        color: var(--muted);
        line-height: 1.6;
      }

      /* Highlight box */
      .highlight-box {
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 168, 107, 0.05) 100%);
        border: 1px solid var(--border);
        border-radius: 1rem;
        padding: 2rem;
      }

      @media (min-width: 768px) {
        .highlight-box {
          padding: 3rem;
        }
      }

      .highlight-content {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
      }

      .highlight-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
      }

      .highlight-text {
        font-size: 1rem;
        color: var(--muted);
        line-height: 1.7;
      }

      /* Check list */
      .check-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .check-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--muted);
      }

      .check-icon {
        width: 1.25rem;
        height: 1.25rem;
        color: var(--accent);
        flex-shrink: 0;
      }

      /* Governance card */
      .governance-card {
        position: relative;
        background: var(--background);
        border: 1px solid var(--border);
        border-radius: 1rem;
        padding: 2rem;
      }

      .governance-card-bg {
        position: absolute;
        inset: 0;

        background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(0, 168, 107, 0.2) 100%);
        border-radius: 1rem;
        transform: rotate(2deg);
        z-index: -1;
      }

      .governance-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
      }

      .governance-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }

      .governance-item {
        font-size: 0.875rem;
        color: var(--muted);
      }

      .governance-item strong {
        color: var(--foreground);
      }

      /* Collaboration section */
      .collab-icons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
      }

      .collab-icon {
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* Contact section */
      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

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

      .contact-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .contact-label {
        font-weight: 600;
        margin-bottom: 0.25rem;
      }

      .contact-text {
        color: var(--muted);
        font-size: 0.875rem;
      }

      .contact-link {
        color: var(--primary);
        text-decoration: none;
      }

      .contact-link:hover {
        text-decoration: underline;
      }

      /* Form */
      .form-card {
        background: var(--background);
        border: 1px solid var(--border);
        border-radius: 0.75rem;
        padding: 2rem;
      }

      .form-title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
      }

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

      .form-label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
      }

      .form-input,
      .form-textarea {
        width: 100%;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        border: 1px solid var(--border);
        background: var(--background);
        color: var(--foreground);
        font-size: 0.875rem;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
      }

      .form-input:focus,
      .form-textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
      }

      .form-textarea {
        resize: none;
      }

      .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
      }

      .note-box {
        background: var(--secondary);
        border-radius: 0.5rem;
        padding: 1rem;
        margin-top: 1.5rem;
      }

      .note-text {
        font-size: 0.875rem;
        color: var(--muted);
      }

      /* Footer */
      footer {
        background: var(--secondary);
        border-top: 1px solid var(--border);
        padding: 2rem 1.5rem;
      }

      .footer-content {
        max-width: 72rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
      }

      @media (min-width: 768px) {
        .footer-content {
          flex-direction: row;
          justify-content: space-between;
        }
      }

      .footer-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }

      .footer-logo-icon {
        width: 4rem;
        height: 4rem;
        border-radius: 0.5rem;
   
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .footer-logo-text {
        color: white;
        font-weight: 700;
        font-size: 0.875rem;
      }

      .footer-logo-name {
        font-weight: 600;
      }

      .footer-text {
        font-size: 0.875rem;
        color: var(--muted);
        text-align: center;
      }

      @media (min-width: 768px) {
        .footer-text {
          text-align: right;
        }
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .animate-fade-in {
        animation: fadeInUp 0.6s ease forwards;
      }

      /* Image styles */
      .section-image {
        width: 100%;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
      }

      .section-image:hover {
        transform: scale(1.02);
      }

      .hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.20;
        z-index: 0;
      }

      .hero-content {
        position: relative;
        z-index: 1;
      }

      .image-container {
        position: relative;
        overflow: hidden;
        border-radius: 1rem;
      }

      .image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 168, 107, 0.1) 100%);
        pointer-events: none;
      }

      /* SVG icons */
      svg {
        display: block;
      }
      
