/* HEALTH INSURANCE PLANS SECTION */
.insurance-plans-section {
  padding: 60px 8%;
  background: #fff;
  text-align: center;
  color: #183b56;
}

.insurance-plans-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.insurance-plans-section .section-subheading {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 40px;
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
}

.insurance-card {
  background: #f8f9fa;
  padding: 25px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  text-align: left;
}

.insurance-card img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.insurance-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a3b58;
}

.insurance-card ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 10px;
  line-height: 1.6;
}

.insurance-card .feature {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  margin-top: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .insurance-card {
    text-align: center;
  }
}
.insurance-card {
  background: #f8f9fa;
  padding: 25px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  text-align: left;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border 0.3s ease;
  border: 2px solid transparent;
}

/* HOVER EFFECT */
.insurance-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  border: 2px solid #1aff1a; /* brand green */
}

/* Slight image zoom on hover */
.insurance-card img {
  transition: transform 0.3s ease;
}

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

/* Heading color change */
.insurance-card h3 {
  transition: color 0.3s ease;
}

.insurance-card:hover h3 {
  color: #1aff1a;
}
.loving-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: #fff9f5;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
}

.loving-section h2 {
  color: #19508d;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
}

.loving-section h3 {
  color: #19508d;
  margin-top: 25px;
  margin-bottom: 10px;
}

.loving-section ul,
.loving-section ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.loving-section li {
  margin-bottom: 10px;
}

.closing-note {
  text-align: center;
  font-style: italic;
  color: #19508d;
  margin-top: 30px;
}
