/* Extracted from health-checkup-plans.php head style block 1 */
body {
      font-family: 'Poppins', sans-serif;
      background: #fff;
      color: #2f3a45;
      line-height: 1.7;
    }

    .hero-section {
      background: linear-gradient(135deg, #00a58c 0%, #00c9a7 55%, #00e4cc 100%);
      color: #fff;
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-section::before,
    .hero-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      pointer-events: none;
    }

    .hero-section::before {
      width: 400px;
      height: 400px;
      right: -120px;
      top: -150px;
    }

    .hero-section::after {
      width: 280px;
      height: 280px;
      left: -100px;
      bottom: -120px;
      background: rgba(255, 255, 255, 0.08);
    }

    .hero-section h1,
    .hero-section p {
      position: relative;
      z-index: 1;
    }

    .hero-section h1 {
      font-weight: 800;
      font-size: 2.8rem;
      margin-bottom: 1.2rem;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .hero-section p {
      font-size: 1.15rem;
      max-width: 900px;
      margin: 0 auto;
      opacity: 0.95;
      line-height: 1.8;
    }

    .header {
      background: #00a58c;
      color: white;
      padding: 20px 0;
    }

    .bg-dark {
      background: linear-gradient(90deg, #00a58c 0%, #00c9a7 100%) !important;
      box-shadow: 0 4px 12px rgba(0, 165, 140, 0.25);
    }

    .bg-dark h5 {
      font-weight: 600;
      margin: 0;
    }

    .package-card {
      border-left: 6px solid #00c9a7;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      border: 1px solid rgba(0, 165, 140, 0.15);
    }

    .package-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 38px rgba(0, 165, 140, 0.2);
      border-color: #00a58c;
    }

    .package-title {
      font-weight: 700;
      font-size: 1.4rem;
      color: #00a58c;
    }

    .price-box {
      background: linear-gradient(140deg, rgba(255, 152, 0, 0.12) 0%, rgba(255, 193, 7, 0.12) 100%);
      padding: 14px;
      border-radius: 12px;
      border-left: 4px solid #ff9800;
      font-weight: 600;
    }

    .test-chip {
      background: linear-gradient(140deg, rgba(0, 165, 140, 0.08) 0%, rgba(0, 201, 167, 0.08) 100%);
      padding: 10px 14px;
      display: inline-block;
      margin: 5px;
      border-radius: 8px;
      font-size: 14px;
      border: 1px solid rgba(0, 165, 140, 0.2);
      transition: all 0.2s ease;
    }

    .test-chip:hover {
      background: rgba(0, 165, 140, 0.12);
      border-color: #00a58c;
    }

    .test-chip b {
      color: #00a58c;
    }

    .badge.bg-warning {
      background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%) !important;
      box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
      font-weight: 600;
    }

    section[style*="background-color: #edf7ff"] {
      background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    }

    section h2.mb-4 {
      font-weight: 800;
      color: #00a58c;
      position: relative;
      padding-bottom: 16px;
    }

    section h2.mb-4::after {
      content: "";
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #00a58c 0%, #00c9a7 100%);
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 4px;
    }

    .swiper-slide img {
      transition: transform 0.3s ease;
    }

    .swiper-slide img:hover {
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .hero-section {
        padding: 70px 0;
      }

      .hero-section h1 {
        font-size: 2rem;
      }

      .hero-section p {
        font-size: 1rem;
      }

      .package-card {
        padding: 20px !important;
      }

      .package-title {
        font-size: 1.2rem;
      }
    }

