
    :root {
      --primary-color: #1173d4;
      --secondary-color: #e2f0ff;
    }
    body {
      /* font-family: 'Inter', 'Noto Sans', sans-serif; */
      background-color: #f1f5f9; /* Tailwind's slate-50 */
      margin: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    main {
      flex: 1 0 auto;
    }
    /* Hero Section */
    .hero-section {
      position: relative;
      color: white;
      text-align: center;
      padding: 6rem 1rem 8rem;
      overflow: hidden;
    }
    .hero-background {
      position: absolute;
      top: 0; bottom: 0; left: 0; right: 0;
      background-image: url('https://framerusercontent.com/images/U6mGQm5WHZCR2KONvvm4KHwre0.png?scale-down-to=1024');
      background-size: cover;
      background-position: center;
      z-index: 1;
    }
    .hero-overlay {
      position: absolute;
      top: 0; bottom: 0; left: 0; right: 0;
      background-color: rgba(0,0,0,0.5);
      z-index: 2;
    }
    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 48rem;
      margin: 0 auto;
    }
    .hero-content h1 {
      font-weight: 900;
      font-size: 2.5rem;
      line-height: 1.1;
      letter-spacing: -0.033em;
    }
    @media (min-width: 768px) {
      .hero-content h1 {
        font-size: 3.75rem;
      }
    }
    .hero-content p {
      margin-top: 1rem;
      font-size: 1.125rem;
      line-height: 1.5;
      font-weight: 400;
      max-width: 36rem;
      margin-left: auto;
      margin-right: auto;
    }
    .btn-primary-custom {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      font-weight: 700;
      font-size: 1rem;
      padding: 0.5rem 1.5rem;
      min-width: 84px;
      max-width: 480px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
      border-radius: 0.375rem;
      margin-top: 2rem;
      color: #f8fafc;
      text-decoration: none;
      cursor: pointer;
    }
    .btn-primary-custom:hover {
      background-color: #0d5bbd;
      border-color: #0d5bbd;
      color: #f8fafc;
      text-decoration: none;
    }

    /* Features Section */
    .features-section {
      padding: 4rem 1rem 6rem;
      background-color: #fff;
    }
    .features-section .section-header {
      max-width: 80rem;
      margin: 0 auto 3rem;
      text-align: center;
    }
    .features-section .section-header h2 {
      font-weight: 900;
      font-size: 2rem;
      letter-spacing: -0.033em;
      color: #0d141b;
    }
    .features-section .section-header p {
      margin-top: 0.75rem;
      font-size: 1.125rem;
      color: #4b5563; /* Tailwind slate-600 */
      max-width: 36rem;
      margin-left: auto;
      margin-right: auto;
    }
    .features-grid {
      max-width: 80rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    @media(min-width: 768px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media(min-width: 992px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    .feature-card {
      background-color: white;
      border: 1px solid #e2e8f0; /* slate-200 */
      border-radius: 0.5rem;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: box-shadow 0.3s ease;
      cursor: default;
    }
    .feature-card:hover {
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .feature-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 9999px;
      background-color: var(--secondary-color);
      color: var(--primary-color);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.875rem;
      user-select: none;
      margin-bottom: 0.5rem;
    }
    .feature-title {
      font-weight: 700;
      font-size: 1.125rem;
      color: #0d141b;
      margin-bottom: 0.25rem;
    }
    .feature-description {
      font-size: 0.875rem;
      color: #4b5563;
      line-height: 1.4;
      font-weight: 400;
    }

    /* Call to action section */
    .cta-section {
      background-color: white;
      text-align: center;
      padding: 4rem 1rem 6rem;
    }
    .cta-section h2 {
      font-weight: 900;
      font-size: 2rem;
      letter-spacing: -0.033em;
      color: #0d141b;
      max-width: 48rem;
      margin: 0 auto;
    }
    .cta-section p {
      margin-top: 0.75rem;
      font-size: 1.125rem;
      color: #4b5563;
      max-width: 36rem;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-section .btn-primary-custom {
      margin-top: 2rem;
    }

    /* Footer */
    footer {
      background-color: #f1f5f9;
      border-top: 1px solid #e2e8f0;
      padding: 2.5rem 1rem;
    }
    footer .footer-container {
      max-width: 80rem;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
    }
    footer .footer-left {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.5rem;
      color: #4b5563;
      font-size: 0.875rem;
    }
    footer .footer-left a {
      color: #4b5563;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    footer .footer-left a:hover {
      color: var(--primary-color);
    }
    footer .footer-right {
      display: flex;
      gap: 1rem;
      color: #6b7280;
    }
    footer .footer-right a {
      color: #6b7280;
      transition: color 0.3s ease;
      display: inline-flex;
      align-items: center;
    }
    footer .footer-right a:hover {
      color: var(--primary-color);
    }
    footer svg {
      width: 1.5rem;
      height: 1.5rem;
    }

  