* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }

  .features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
  }

  .hero-section {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
  }

  .hero-section::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    bottom: -40px;
    left: 10%;
  }

  .hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: inline-block;
  }

  .hero-description {
    font-size: 22px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 20px;
  }

  .hero-alert {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 40px auto 20px;
    padding: 20px;
    border-radius: 10px;
  }

  .features-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
  }

  .feature-tab {
    padding: 12px 22px;
    background-color: var(--bg-off);
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    color: var(--text-light);
    border: none;
  }

  .feature-tab:hover {
    background-color: rgba(39, 85, 211, 0.1);
    transform: translateY(-2px);
  }

  .feature-tab:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  .feature-tab.active {
    background-color: var(--color-primary);
    color: white;
  }

  .features-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
  }

  .feature-item {
    background: var(--bg);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
  }

  .feature-item:hover {
    transform: translateY(-5px);
  }

  .feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000000;
    position: relative;
    display: inline-block;
  }

  .feature-description {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
  }

  .cta-section {
    margin-top: 100px;
    padding: 0;
    position: relative;
    overflow: hidden;
  }

  .cta-container {
    background: var(--color-primary);
    border-radius: 25px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-align: center;
  }

  .cta-heading {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 5;
    text-align: center;
  }

  .cta-subheading {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
  }

  .cta-button {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    overflow: hidden;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }

  .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  }

  .cta-button:hover::before {
    transform: translateX(100%);
  }

  @media (max-width: 767px) {
    .hero-title {
      font-size: 36px;
    }
    
    .hero-description {
      font-size: 18px;
    }
    
    .feature-item {
      padding: 25px;
      border-radius: 15px;
    }
    
    .feature-title {
      font-size: 20px;
    }
    
    .feature-description {
      font-size: 15px;
    }
    
    .cta-container {
      padding: 40px 20px;
    }
    
    .cta-heading {
      font-size: 28px;
    }
    
    .cta-subheading {
      font-size: 16px;
    }
    
    .feature-tab {
      font-size: 14px;
      padding: 10px 18px;
    }
    
    .features-tabs {
      gap: 10px;
    }

    .hero-alert {
      font-size: 18px;
      padding: 15px;
    }

    .features-content {
      max-width: 100%;
    }
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  @keyframes shine {
    0% {
      transform: translateX(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) rotate(45deg);
    }
  }
  
::marker {
    color: white;
}