
    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }
    .gradient-text {
      background: linear-gradient(135deg, #019CDC, #019CDC);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-title {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 2rem;
         margin-top: 1rem;
      line-height: 1.1;
      position: relative;
    }
    .feature-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 2rem;
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .feature-card:hover::before {
      opacity: 1;
    }
    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    .icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #019CDC, #019CDC);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
      transition: all 0.4s ease;
    }
    .icon-circle:hover {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }
    .icon-circle i {
      color: white;
      font-size: 2rem;
    }
    .number-circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #019CDC, #019CDC);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.5rem;
      box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
      transition: all 0.4s ease;
      flex-shrink: 0;
    }
    .number-circle:hover {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }
    .image-container {
      overflow: hidden;
      border-radius: 1.5rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      transition: all 0.5s ease;
      position: relative;
    }
    .image-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .image-container:hover::before {
      opacity: 1;
    }
    .image-container:hover {
      transform: scale(1.03);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    }
    .image-container img {
      transition: transform 0.5s ease;
    }
    .image-container:hover img {
      transform: scale(1.05);
    }
    .btn-primary {
      background: linear-gradient(135deg, #019CDC, #019CDC);
      color: white;
      padding: 1rem 2rem;
      border-radius: 0.75rem;
      font-weight: 600;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s;
    }
    .btn-primary:hover::before {
      left: 100%;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    }
    .btn-secondary {
      border: 2px solid #019CDC;
      color: #019CDC;
      padding: 1rem 2rem;
      border-radius: 0.75rem;
      font-weight: 600;
      transition: all 0.4s ease;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      display: inline-flex;
      align-items: center;
    }
    .btn-secondary:hover {
      background: #019CDC;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    }
    .badge {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background: linear-gradient(135deg, #019CDC, #019CDC);
      color: white;
      border-radius: 2rem;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
      transition: all 0.4s ease;
    }
    .badge:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }
    .section-divider {
      height: 3px;
      background: linear-gradient(90deg, transparent, #019CDC, #019CDC, transparent);
      margin: 5rem 0;
      border-radius: 2px;
    }
    .floating {
      animation: floating 3s ease-in-out infinite;
    }
    @keyframes floating {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .slide-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }
    .slide-in.active {
      opacity: 1;
      transform: translateY(0);
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.1); opacity: 0.8; }
    }
    .benefit-highlight {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      padding: 1.5rem;
      border-radius: 1rem;
      border-left: 4px solid #019CDC;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
    }
    .benefit-highlight:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }
    .stat-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 2rem;
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      text-align: center;
    }
    .stat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    .stat-number {
      font-size: 5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #019CDC, #019CDC);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }