*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Baloo Bhai 2", sans-serif;
}

/* Card Section Styling */
.card8 {
  background-color: #f0f7fb; /* Soft light blue */
  padding: 60px 20px;
  font-family: "Roboto", sans-serif;
  color: #2c3e50;
}

/* Container grid */
.card8 .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns on large screens */
  gap: 30px;
}

/* Each card style */
.container-items {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 20px 35px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Image inside card */
.container-items img {
  max-width: 90px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Card title */
.container-items h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #21759b; /* calm blue */
  font-weight: 700;
  min-height: 48px; /* Keep card heights balanced */
}

/* Card paragraph */
.container-items p {
  font-size: 1.2rem;
  color: #4a5a6a;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Read more button */
.container-items button {
  background-color: #3bb78f; /* fresh green */
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  align-self: center;
  box-shadow: 0 4px 10px rgba(59, 183, 143, 0.4);
}

.container-items button a {
  color: white;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

/* Hover effects */
.container-items:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.container-items button:hover {
  background-color: #2b896e;
  box-shadow: 0 8px 18px rgba(43, 137, 110, 0.6);
}

/* Responsive: tablets - 2 cards per row */
@media (max-width: 992px) {
  .card8 .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .container-items h2 {
    min-height: auto;
  }
}

/* Responsive: mobile - 1 card per row */
@media (max-width: 576px) {
  .card8 .container {
    grid-template-columns: 1fr;
  }
  .container-items {
    padding: 20px 15px 30px;
  }
  .container-items h2 {
    font-size: 1.4rem;
  }
  .container-items p {
    font-size: 1rem;
  }
  .container-items button {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

.card8 h1 {
  font-family: "Roboto", sans-serif;
  font-size: 3.6rem;         /* Large and prominent */
  font-weight: 700;          /* Bold */
  color: #21759b;            /* Calm clinic blue */
  text-align: center;        /* Centered heading */
  margin-bottom: 50px;       /* Space below to separate from cards */
  letter-spacing: 0.04em;    /* Slight spacing for clarity */
  line-height: 1.2;          /* Tight line height for crispness */
  text-transform: capitalize; /* Consistent with rest of site */
  max-width: 900px;          /* Limits width on very large screens */
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;

}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card8 h1 {
    font-size: 2.8rem;
    margin-bottom: 35px;
  }
}

@media (max-width: 480px) {
  .card8 h1 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    padding: 0 15px; /* small side padding on very small screens */
  }
}


/* Help Section */
.help-section {
  background-color: #f8fcfe; /* soft clinic blue background */
  padding: 60px 20px;
  font-family: "Roboto", sans-serif;
}

.help-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Image and Content side by side */
  align-items: center;
  gap: 40px;
}

/* Left Image */
.help-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Right Content */
.help-content h2 {
  font-size: 2.2rem;
  color: #21759b;
  font-weight: 700;
  margin-bottom: 15px;
}

.help-content p {
  font-size: 1.5rem;
  color: #4a5a6a;
  margin-bottom: 20px;
}

.help-content ul {
  list-style: none;
  padding: 0;
}

.help-content ul li {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.help-content ul li i {
  color: #3bb78f; /* green checkmark */
  margin-right: 10px;
  font-size: 1.27rem;
}

.help-content ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.help-content ul li a:hover {
  color: #3bb78f;
}

/* Responsive */
@media (max-width: 768px) {
  .help-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .help-content ul li {
    justify-content: center;
  }
}




.price-list-section {
  background-color: #f0f7fb; /* soft clinic blue */
  padding: 60px 20px;
  font-family: "Roboto", sans-serif;
}

.price-list-container {
  max-width: 900px;
  margin: 0 auto;
}

.price-list-container h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #21759b;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Table Styling */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.price-table td {
  padding: 15px 20px;
  font-size: 1.5rem;
  color: #2c3e50;
  border-bottom: 1px solid #e0e6eb;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.service-name {
  text-align: left;
  font-weight: 500;
}

.service-price {
  text-align: right;
  font-weight: 600;
  color: #3bb78f; /* green accent */
}

/* Responsive: turn table into block layout */
@media (max-width: 576px) {
  .price-table, 
  .price-table tbody, 
  .price-table tr, 
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table tr {
    margin-bottom: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 10px;
  }

  .service-name {
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .service-price {
    text-align: left;
    font-weight: 500;
    color: #3bb78f;
  }

  .price-table td {
    border: none;
    padding: 5px 0;
  }
}

