    /* Section Title Styling */
    .section-heading {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      color: #1c1e53;
      margin-bottom: 50px;
      margin-top: 20px;
      position: relative;
      display: inline-block;
      width: 100%;
    }

    .section-heading:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #fcd980, #f4b942);
      border-radius: 2px;
    }

    .carousel-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-bottom: 30px;
      padding: 20px;
    }

    .carousel-btn {
      background: linear-gradient(135deg, #1c1e53 0%, #2405f2 100%);
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.2rem;
      box-shadow: 0 4px 15px rgba(28, 30, 83, 0.3);
    }

    .carousel-btn:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 8px 25px rgba(28, 30, 83, 0.4);
    }

    .carousel-btn:active {
      transform: translateY(0) scale(0.98);
    }

    .carousel-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }

    .carousel-info {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .carousel-indicator {
      font-size: 1.1rem;
      font-weight: 600;
      color: #1c1e53;
      padding: 8px 16px;
      background: rgba(28, 30, 83, 0.1);
      border-radius: 20px;
      min-width: 60px;
      text-align: center;
    }

    .play-pause-btn {
      background: linear-gradient(135deg, #fcd980 0%, #f4b942 100%);
      color: #1c1e53;
    }

    .play-pause-btn:hover {
      background: linear-gradient(135deg, #f4b942 0%, #fcd980 100%);
    }

    .benefits-carousel-container {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.05);
      padding: 20px;
    }

    .benefits-carousel {
      display: flex;
      gap: 20px;
      min-height: 400px;
      align-items: stretch;
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      flex-wrap: nowrap;
    }

    .benefit-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
      padding: 25px;
      border-radius: 15px;
      text-align: center;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      display: none; /* Hidden by default */
      flex: 1;
      min-width: 280px;
      opacity: 0;
      transform: translateX(30px);
    }

    /* Show visible cards */
    .benefit-card.visible {
      display: block;
      opacity: 1;
      transform: translateX(0);
    }

    /* Active card gets special styling */
    .benefit-card.active {
      border-color: rgba(252, 217, 128, 0.3);
      background: linear-gradient(135deg, rgba(252, 217, 128, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    }

    /* Desktop: 3 cards layout */
    @media (min-width: 769px) {
      .benefits-carousel {
        justify-content: center;
      }
      
      .benefit-card.visible {
        display: flex;
        flex-direction: column;
        flex: 1;
        max-width: 350px;
      }
    }

    /* Mobile: 1 card layout */
    @media (max-width: 768px) {
      .benefits-carousel {
        justify-content: center;
        min-height: 300px;
      }
      
      .benefit-card.visible {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
      }
    }

    .benefit-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(28, 30, 83, 0.2);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    }

    .benefit-icon {
      background: linear-gradient(135deg, #fcd980 0%, #f4b942 100%);
      color: #1c1e53;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.4rem;
      margin: 0 auto 15px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(252, 217, 128, 0.3);
    }

    .benefit-card:hover .benefit-icon {
      transform: scale(1.15) rotate(10deg);
      box-shadow: 0 8px 20px rgba(252, 217, 128, 0.5);
      background: linear-gradient(135deg, #f4b942 0%, #fcd980 100%);
    }

    .benefit-icon i {
      transition: all 0.3s ease;
    }

    .benefit-card:hover .benefit-icon i {
      transform: scale(1.1);
    }

    .benefit-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: #1c1e53;
      text-align: left;
    }

    .benefit-description {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #666;
      margin: 0;
      text-align: left;
      text-align-last: left;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .carousel-controls {
        gap: 15px;
        margin-bottom: 20px;
      }

      .carousel-btn {
        width: 45px;
        height: 45px;
      }
      
      .benefit-card.visible {
        min-width: 250px;
      }
    }

    @media (max-width: 768px) {
      .section-heading {
        font-size: 2rem;
        margin-bottom: 30px;
      }

      .section-heading:after {
        width: 60px;
        height: 3px;
      }

      .carousel-controls {
        gap: 10px;
        flex-wrap: wrap;
      }

      .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }

      .benefit-card {
        padding: 20px;
      }

      .benefit-title {
        font-size: 1.2rem;
      }

      .benefit-description {
        font-size: 0.9rem;
        text-align: left;
      }
      
      .benefits-carousel-container {
        padding: 15px;
      }
    }

    @media (max-width: 480px) {
      .section-heading {
        font-size: 1.8rem;
        margin-bottom: 25px;
      }

      .section-heading:after {
        width: 50px;
        height: 2px;
      }
      
      .benefit-card {
        padding: 18px;
        min-width: auto;
      }
      
      .benefit-title {
        font-size: 1.1rem;
      }
      
      .benefit-description {
        font-size: 0.85rem;
      }
      
      .benefits-carousel-container {
        padding: 10px;
      }
    }