    :root {
      --primary-coral: #FF6B5A;
      --primary-teal: #00D4C3;
      --accent-lime: #B4FF39;
      --dark-navy: #0A1628;
      --dark-slate: #1A2841;
      --light-pearl: #F8F9FA;
      --shadow-glow: rgba(0, 212, 195, 0.3);
      --shadow-depth: rgba(10, 22, 40, 0.6);
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-slate) 100%);
      color: var(--light-pearl);
      line-height: 1.7;
      overflow-x: hidden;
    }
    header {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      background: rgba(10, 22, 40, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid rgba(0, 212, 195, 0.2);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    header.scrolled {
      box-shadow: 0 8px 32px var(--shadow-depth);
      border-bottom-color: var(--primary-teal);
    }
    header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 1.5rem;
      position: relative;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary-coral), var(--primary-teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.5px;
      text-decoration: none;
      max-height: 50px;
      display: inline-block;
    }
    nav {
      display: flex;
      align-items: center;
      padding-left: 0 !important;
      margin-bottom: 0 !important;
    }
    nav ul {
      flex: none !important;
    }
    nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }
    nav a {
      color: var(--light-pearl);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      position: relative;
      padding: 0.3rem 0;
      transition: color 0.3s ease;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-teal);
      transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    nav a:hover {
      color: var(--primary-teal);
    }
    nav a:hover::after {
      width: 100%;
    }
    .cta-button {
      display: inline-block;
      padding: 0.9rem 2rem;
      background: linear-gradient(135deg, var(--primary-coral), var(--primary-teal));
      color: white;
      text-decoration: none;
      font-weight: 700;
      border-radius: 50px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-size: 0.9rem;
      box-shadow: 0 8px 24px rgba(255, 107, 90, 0.4);
    }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }
    .hamburger span {
      width: 28px;
      height: 3px;
      background: var(--primary-teal);
      transition: all 0.3s ease;
      border-radius: 2px;
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
    .cta-button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .cta-button:hover::before {
      width: 300px;
      height: 300px;
    }

    .cta-button:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 12px 32px rgba(255, 107, 90, 0.6);
    }

    main {
      padding-top: 80px;
    }

    section {
      padding: 5rem 0;
      position: relative;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    h1 {
      font-size: 3.5rem;
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, var(--accent-lime), var(--primary-teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -1px;
    }

    h2 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 3rem;
      color: var(--light-pearl);
      letter-spacing: -0.5px;
      position: relative;
      padding-bottom: 1rem;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-coral), var(--primary-teal));
      border-radius: 2px;
    }

    h3 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--primary-teal);
    }

    h4 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
      color: var(--accent-lime);
    }

    p {
      margin-bottom: 1.2rem;
      font-size: 1.05rem;
      color: rgba(248, 249, 250, 0.9);
    }

    .hero-section {
      min-height: 90vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: radial-gradient(ellipse at top, rgba(0, 212, 195, 0.15), transparent 60%),
                  radial-gradient(ellipse at bottom right, rgba(255, 107, 90, 0.15), transparent 60%);
    }

    .hero-section::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--primary-teal) 0%, transparent 70%);
      opacity: 0.1;
      top: -200px;
      right: -200px;
      animation: float 20s ease-in-out infinite;
    }

    .hero-section::after {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--primary-coral) 0%, transparent 70%);
      opacity: 0.1;
      bottom: -150px;
      left: -150px;
      animation: float 25s ease-in-out infinite reverse;
    }

    .cards-grid-2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .cards-grid-2 .container {
      max-width: 100%;
    }

    .cards-grid-2 h2 {
      grid-column: 1 / -1;
    }

    .card {
      background: rgba(26, 40, 65, 0.6);
      border-radius: 20px;
      padding: 2rem;
      border: 1px solid rgba(0, 212, 195, 0.2);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 24px var(--shadow-depth);
      display: flex;
      flex-direction: column;
    }

    .card:hover {
      transform: translateY(-12px) scale(1.02);
      border-color: var(--primary-coral);
      box-shadow: 0 20px 60px rgba(255, 107, 90, 0.4);
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 16px var(--shadow-depth);
    }

    .card h3 {
      margin-top: 0;
    }

    .highlight-boxes .highlight-box {
      background: linear-gradient(135deg, rgba(255, 107, 90, 0.1), rgba(0, 212, 195, 0.1));
      padding: 3rem;
      border-radius: 24px;
      margin-bottom: 2.5rem;
      border: 2px solid rgba(0, 212, 195, 0.3);
      box-shadow: 0 12px 40px var(--shadow-depth);
      transition: all 0.4s ease;
    }

    .highlight-box:hover {
      border-color: var(--accent-lime);
      transform: scale(1.02);
    }

    .highlight-box img {
      border-radius: 16px;
      margin: 1.5rem 0;
      box-shadow: 0 12px 32px var(--shadow-depth);
    }

    .accordion-item {
      background: rgba(26, 40, 65, 0.6);
      border: 1px solid rgba(0, 212, 195, 0.2);
      border-radius: 16px;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .accordion-item:hover {
      border-color: var(--primary-teal);
    }

    .accordion-header {
      padding: 1.5rem 2rem;
      cursor: pointer;
      position: relative;
      user-select: none;
      color: var(--light-pearl);
      transition: all 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .accordion-header::after {
      content: '+';
      font-size: 2rem;
      color: var(--primary-teal);
      transition: transform 0.3s ease;
      font-weight: 300;
    }

    .accordion-item.active .accordion-header {
      background: rgba(0, 212, 195, 0.1);
      color: var(--primary-teal);
    }

    .accordion-item.active .accordion-header::after {
      transform: rotate(45deg);
    }

    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 0 !important;
    }

    .accordion-item.active .accordion-body {
      max-height: 1000px;
    }

    .accordion-body > div {
      padding: 0 2rem 2rem;
    }

    .cta-section {
      text-align: center;
      padding: 6rem 0;
      background: linear-gradient(135deg, rgba(255, 107, 90, 0.15), rgba(0, 212, 195, 0.15));
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, var(--accent-lime) 0%, transparent 70%);
      opacity: 0.1;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      animation: pulse 4s ease-in-out infinite;
    }

    footer {
      background: var(--dark-navy);
      padding: 4rem 0 2rem;
      border-top: 2px solid rgba(0, 212, 195, 0.2);
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-section h3 {
      color: var(--accent-lime);
      margin-bottom: 1rem;
    }

    .footer-section h4 {
      margin-bottom: 1rem;
    }

    .footer-section ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-section li {
      margin-bottom: 0.8rem;
    }

    .footer-section a {
      color: rgba(248, 249, 250, 0.8);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: var(--primary-teal);
    }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(0, 212, 195, 0.1);
      text-align: center;
      color: rgba(248, 249, 250, 0.6);
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(12px);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 24px var(--shadow-depth);
      }

      nav.active {
        right: 0;
      }

      nav {
        flex-wrap: wrap;
      }
      
      nav ul {
        flex-direction: column;
        gap: 0;
      }

      nav li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 212, 195, 0.1);
      }

      nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
      }

      header .cta-button {
        display: none;
      }

      nav .cta-button {
        display: block;
        margin-top: 2rem;
        text-align: center;
      }

      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 2rem;
      }

      h3 {
        font-size: 1.4rem;
      }

      .hero-section {
        min-height: 70vh;
        padding: 4rem 0;
      }

      section {
        padding: 3rem 0;
      }

      .cards-grid-2 {
        grid-template-columns: 1fr;
      }

      table {
        font-size: 0.9rem;
      }

      th, td {
        padding: 0.8rem;
      }

      .timeline-item {
        padding-left: 2rem;
      }

      .feature-blocks .feature-block,
      .highlight-boxes .highlight-box {
        padding: 2rem;
      }
    }

    @media (min-width: 769px) {
      nav .cta-button {
        display: none !important;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      nav ul {
        gap: 1.2rem;
      }

      nav a {
        font-size: 0.9rem;
      }

      h1 {
        font-size: 3rem;
      }
    }

    img {
      max-width: 100%;
      height: auto;
    }
    img[src*="horizontal"], img[src*="vertical"], img[src*="wide"] {
      margin: 10px auto;
      display: block;
      max-width: 500px;
      width: 100%;
    }
    table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin: 2rem 0;
      background: rgba(26, 40, 65, 0.6);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 32px var(--shadow-depth);
    }
    thead {
      background: linear-gradient(135deg, var(--primary-coral), var(--primary-teal));
    }
    th {
      padding: 1.2rem 1.5rem;
      text-align: left;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-size: 0.9rem;
    }
    td {
      padding: 1.2rem 1.5rem;
      border-bottom: 1px solid rgba(0, 212, 195, 0.1);
      color: rgba(248, 249, 250, 0.95);
      font-size: 1rem;
    }
    tbody tr {
      transition: background 0.3s ease;
    }
    tbody tr:hover {
      background: rgba(0, 212, 195, 0.05);
    }
    tbody tr:last-child td {
      border-bottom: none;
    }

    a {
      color: var(--primary-teal);
      transition: color 0.3s ease;
    }

    a:hover {
      color: var(--accent-lime);
    }

    .feature-table p,
    .card p,
    .accordion-body p {
      color: rgba(248, 249, 250, 0.9);
    }
  

@media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(12px);
        padding: 6rem 2rem 2rem 50px !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 24px var(--shadow-depth);
        flex-wrap: wrap;
      }

      nav.active {
        right: 0;
      }

      nav ul {
        flex-direction: column;
        gap: 0;
      }

      nav li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 212, 195, 0.1);
      }

      nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
      }

      header .cta-button {
        display: none;
      }

      nav .cta-button {
        display: block;
        margin-top: 2rem;
        text-align: center;
      }

      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 2rem;
      }

      h3 {
        font-size: 1.4rem;
      }

      .hero-section {
        min-height: 70vh;
        padding: 4rem 0;
      }

      section {
        padding: 3rem 0;
      }

      .cards-grid-2 {
        grid-template-columns: 1fr;
      }

      table {
        font-size: 0.9rem;
      }

      th, td {
        padding: 0.8rem;
      }

      .timeline-item {
        padding-left: 2rem;
      }

      .feature-blocks .feature-block,
      .highlight-boxes .highlight-box {
        padding: 2rem;
      }
    }