   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f8fafc;
      color: #334155;
      line-height: 1.6;
    }

    .insurance-section {
      padding: 30px 5%;
      max-width: 1400px;
      margin: 0 auto;
    }

    .insurance-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .insurance-subtitle {
      color: #3b82f6;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 15px;
      text-align: center;
    }

    .insurance-title {
         text-align: center;
    font-size: 28px;
    color: #000 !important;
    font-weight: bold;
    
    margin-bottom: 10px;
    }

    .insurance-title::after {
      content: '' !important;
      position: absolute !important;
      bottom: -12px !important;
      left: 50% !important;
      transform: translateX(304%) !important;
      width: 70px !important;
      height: 4px !important;
      background: linear-gradient(90deg, #3b82f6, #10b981) !important;
      border-radius: 2px !important;
    }

    .insurance-description {
      max-width: 600px;
      margin: 0px auto 0;
      color: #64748b;
      font-size: 16px;
    }

    .insurance-slider-container {
      position: relative;
      margin: 40px auto;
      overflow: hidden;
      max-width: 1200px;
      padding: 0 40px;
    }

    .insurance-slider-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .insurance-card {
      flex: 0 0 calc(33.333% - 20px);
      margin: 0 10px;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border: 1px solid #f1f5f9;
    }

    .insurance-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .insurance-card-image {
      width: 100%;
      height: 200px;
      position: relative;
      overflow: hidden;
    }

    .insurance-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .insurance-card:hover .insurance-card-image img {
      transform: scale(1.05);
    }

    .insurance-card-content {
      padding: 25px;
    }

    .insurance-card-title {
      font-size: 20px;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 12px;
    }

    .insurance-card-description {
      font-size: 15px;
      color: #64748b;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .insurance-card-button {
      display: inline-flex;
      align-items: center;
      background: linear-gradient(90deg, #3b82f6, #60a5fa);
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .insurance-card-button:hover {
      background: linear-gradient(90deg, #2563eb, #3b82f6);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
      transform: translateY(-2px);
    }

    .insurance-card-button i {
      margin-left: 8px;
      font-size: 12px;
    }

    .insurance-slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: white;
      border: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #3b82f6;
      font-size: 18px;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .insurance-slider-nav:hover {
      background: #3b82f6;
      color: white;
      box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
    }

    .insurance-slider-prev {
      left: -10px;
    }

    .insurance-slider-next {
      right: -10px;
    }

    .insurance-slider-dots {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }

    .insurance-slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #cbd5e1;
      margin: 0 6px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .insurance-slider-dot.active {
      background: #3b82f6;
      transform: scale(1.3);
    }

    @media (max-width: 1100px) {
      .insurance-card {
        flex: 0 0 calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .insurance-section {
        padding: 14px 4%;
      }
      
      .insurance-title {
        font-size: 28px;
      }
      
      .insurance-card {
        flex: 0 0 calc(100% - 20px);
      }
      
      .insurance-slider-container {
        padding: 0 30px;
      }
      
      .insurance-slider-nav {
        width: 40px;
        height: 40px;
      }
      
      .insurance-slider-prev {
        left: -5px;
      }
      
      .insurance-slider-next {
        right: -5px;
      }
       .insurance-title {
      font-size: 31px !important;
      
    }
    }