body {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    background: linear-gradient(to bottom right, #f2f8ff, #e0f0ff);
    color: #1a1a1a;
  }
  
  .header {
    background: linear-gradient(135deg, #004080, #0066cc);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 5px solid #d5ff00;
    animation: fadeInDown 1s ease-out;
  }
  
  .header-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .brand h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .brand .tagline {
    font-size: 1.2em;
    margin-top: 8px;
    font-weight: 400;
    color: #dff6ff;
  }
  
  .price {
    background-color: #d5ff00;
    color: #004080;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .price strong {
    display: block;
    font-size: 1.8em;
  }
  
  @media (max-width: 768px) {
    .header-content {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }
  
  .instant-savings {
    background-color: #0077cc;
    color: #d5ff00;
    font-weight: bold;
    display: inline-block;
    padding: 7px 12px;
    margin: 20px auto;
    font-size: 1.5em;
    border-radius: 20px;
    animation: bounceIn 1s ease;
  }
  
  .priority-section {
    text-align: center;
    padding: 30px 10px;
    position: relative;
    animation: fadeInUp 1s ease;
    /* background: url('blue-healthcare-background-with-medical-elements_619130-1215.avif') no-repeat center center; */
    background-size: cover;
    background-blend-mode: lighten;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 12px;
    z-index: 1;
  }
  
  
  .priority-section h2 {
    font-size: 2.2em;
    color: #0f4391;
    margin: 0;
    font-weight: bold;
  }
  
  .priority-section h2 span {
    color: #0077cc;
  }
  
  .benefits {
    background: white;
    margin: 25px;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 1em;
    animation: fadeIn 1.2s ease;
    text-align: center;
  }
  
  .additional-discount {
    text-align: center;
    background: #dfefff;
    margin: 25px;
    padding: 12px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1em;
    animation: fadeIn 1.4s ease;
  }
  
  .phone {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
    font-size: 1.2em;
  }
  
  .family-plans {
    background: #ffffff;
    margin: 5px;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1.2s ease;
  }
  
  .family-plans h2 {
    font-size: 2em;
    color: #0f4391;
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  .plan-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .plan-card {
    background: #e9f4ff;
    border-radius: 12px;
    flex: 1 1 320px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
  }
  
  .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    background: #d7ecff;
  }
  
  .plan-card h3 {
    font-size: 1.5em;
    color: #0077cc;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .plan-card ul li {
    font-size: 1em;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.5em;
  }
  
  .plan-card ul li strong {
    color: #0056d6;
  }
  
  .plan-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    background: #d7ecff;
  }
  
  /* Responsive for Mobile */
  @media (max-width: 768px) {
    .plan-cards {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media (max-width: 600px) {
    .priority-section h2 {
      font-size: 1.7em;
    }
  
    .features {
      flex-direction: column;
      padding: 15px;
    }
  
    .benefits,
    .additional-discount {
      margin: 15px;
    }
  }
  
  .plan-title {
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #004080;
    margin-bottom: 4px;
  }
  
  .table-responsive {
    width: 100%;
    overflow-x: auto;
  }
  
  .health-plans {
    border-collapse: collapse;
    /* width: 100%; */
    /* min-width: 600px; */
  }
  
  /* .health-plans table{
      max-width: 50%;
  } */
  
  .health-plans th,
  .health-plans td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    white-space: nowrap;
  }
  
  .health-plans thead th {
    background-color: #007bff;
    color: white;
  }
  
  .health-plans tbody th {
    background-color: #f2f2f2;
    text-align: left;
    white-space: normal;
    /* allow wrapping */
    min-width: 120px;
    /* limit how small it can get */
    max-width: 0px;
    /* limit how wide it can grow */
  }
  
  /* ✅ Sticky + responsive first column */
  /* .health-plans th:first-child,
  .health-plans td:first-child {
    position: sticky;
    left: 0;
    background-color: #f9f9f9;
    z-index: 2;
  } */
  
  /* ✅ Optional emoji styling */
  .health-plans td:has(> .tick) {
    color: green;
    font-weight: bold;
  }
  
  .health-plans td:has(> .cross) {
    color: red;
    font-weight: bold;
  }
  
  /* ✅ Mobile tweaks */
  @media (max-width: 768px) {
    .health-plans tbody th {
      font-size: 14px;
      padding: 8px;
    }
    .family-plans{
      margin: 0px 0px 0px 0px;
      padding: 0px 0px 0px 0px;
    }
  }
  
  .how-it-works-section {
    padding: 60px 20px;
    background-color: #f0f4f8;
    /* font-family: 'Poppins', sans-serif; */
  }
  
  .how-it-works-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #004080;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .how-it-works-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .how-it-works-step {
    flex: 1 1 280px;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  
  .how-it-works-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #3182ce;
    /* Adjust to your brand's primary color */
  }
  
  .how-it-works-heading {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 10px;
  }
  
  .how-it-works-description {
    font-size: 0.95rem;
    color: #4a5568;
  }
  
  .benefits-section {
    padding: 60px 20px;
    background-color: #d7ecff;
  }
  
  .benefits-title {
    text-align: center;
    font-size: 2.25rem;
    color: #004080;
    font-weight: 600;
    margin-bottom: 40px;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .benefit-card {
    background: #f7fafc;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
  }
  
  .benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2b6cb0;
  }
  
  .benefit-heading {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 10px;
  }
  
  .benefit-description {
    font-size: 0.95rem;
    color: #4a5568;
  }
  
  .affordable-section {
    background: #f0f4f8;
    padding: 40px 20px;
    text-align: center;
  }
  
  .affordable-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .affordable-heading {
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
  }
  
  .affordable-subheading {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    font-weight: 400;
  }
  
  .affordable-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #0077b6;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .affordable-btn:hover {
    background-color: #005f8e;
  }
  
  .ecg-heading-wrapper {
    text-align: center;
    position: relative;
    padding-bottom: 40px;
  }
  
  .affordable-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
  }
  
  .ecg-underline {
    width: 100%;
    max-width: 500px;
    height: 30px;
    margin: 0 auto;
    display: block;
  }
  
  .ecg-underline path {
    stroke: #004080;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawECG 4s linear infinite, pulseGlow 1s ease-in-out infinite;
  }
  
  @keyframes drawECG {
    0% {
      stroke-dashoffset: 1000;
    }
  
    100% {
      stroke-dashoffset: 0;
    }
  }
  
  @keyframes pulseGlow {
  
    0%,
    100% {
      filter: drop-shadow(0 0 6px #133a58);
    }
  
    80% {
      filter: drop-shadow(0 0 6px #0f3a5b);
    }
  }
  .btn {
  display: inline-block;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  color: #fff;
  }
  
  .btn.enquire {
  background-color: #007bff;
  }
  
  .btn.enquire:hover {
  background-color: #0056b3;
  }
  
  .btn.apply {
  background-color: #28a745;
  }
  
  .btn.apply:hover {
  background-color: #1e7e34;
  }
  
  td {
  padding: 8px;
  }
  .highlight-b {
    /* background-color: #e6f2ff; */
    color: #004080;
  }
  
  .highlight-a {
    /* background-color: #e6fff0; */
      color: #0c6d23;
  }
  
  /* Animations */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @keyframes bounceIn {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
  
    60% {
      transform: scale(1.2);
      opacity: 1;
    }
  
    100% {
      transform: scale(1);
    }
  }
  
  html {
    scroll-behavior: smooth;
  }
  