
.gf-health-insurance {
  background: linear-gradient(to right, #e6f5ea, #ffffff);
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.gf-health-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.gf-health-form {
  flex: 1 1 500px;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 2rem;
}

.gf-health-form h1 {
  color: #2e7d32;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.gf-health-form p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.gf-policy-type {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gf-policy-type label {
  font-size: 1rem;
  color: #2e7d32;
}

.gf-member-inputs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gf-member {
  background: #f0fdf4;
  padding: 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.gf-member img {
  width: 24px;
  height: 24px;
}

.gf-member button {
  background: #2e7d32;
  color: #fff;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
}

.gf-form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gf-form-group input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #b5d6b8;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.gf-btn {
  width: 100%;
  padding: 1rem;
  background: #019444;
  color: white;
  border: none;
  font-size: 1.1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: background 0.3s;
}

.gf-btn:hover {
  background: #1b5e20;
}

.gf-health-image {
  flex: 1 1 400px;
  text-align: center;
}

.gf-health-image img {
  max-width: 100%;
  height: auto;
}

/* Tablet View (≤ 991px) */
@media (max-width: 991px) {
  .gf-health-content {
    flex-direction: column;
    align-items: stretch;
  }

  .gf-health-form, .gf-health-image {
    flex: 1 1 100%;
  }

  .gf-form-group {
    flex-direction: column;
  }

  .gf-member-inputs {
    flex-direction: column;
  }

  .gf-policy-type {
    flex-direction: column;
  }
}

/* Mobile View (≤ 576px) */
@media (max-width: 576px) {
  .gf-health-insurance {
    padding: 2rem 1rem;
  }

  .gf-health-form h1 {
    font-size: 1.6rem;
  }

  .gf-health-form p {
    font-size: 0.95rem;
  }

  .gf-form-group input {
    font-size: 0.95rem;
    padding: 0.6rem;
  }

  .gf-btn {
    font-size: 1rem;
    padding: 0.9rem;
  }

  .gf-member {
    font-size: 0.95rem;
    padding: 0.75rem;
  }

  .gf-member img,
  .gf-member button {
    width: 20px;
    height: 20px;
  }
}


.gf-container {
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

.gf-health-types
{
  background-color: #fff;
  color: #000;
  padding: 4em 2em;
}
.gf-health-cover {
  background-color: rgba(123, 201, 63, 0.25);
  color: #000;
  padding: 4em 2em;
}
.gf-health-types h2,
.gf-health-cover h2 {
  font-size: 1.6em;
  margin-bottom: 1em;
  font-weight: 700;
  color: #019444;
}

.gf-health-types p,
.gf-health-cover p {
  font-size: 1.1em;
  max-width: 70%;
  margin: 0 auto 2em auto;
  color: #000;
}


.gf-type-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2em;
}

.gf-type-card {
  flex: 1 1 30%;
  padding: 2em 1.5em;
  transition: transform 0.3s ease;
}

.gf-type-card:hover {
  transform: translateY(-0.3em);
}

.gf-type-card img {
  width: 15em;
  height: 15em;
  margin-bottom: 1em;
}

.gf-type-card h3 {
  color: var(--gf-green);
  font-size: 1.3em;
  margin-bottom: 0.5em;
}

.gf-cover-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  justify-items: center;
  margin-top: 2em;
}

.gf-cover-item {
  padding: 1.5em 1em;
  text-align: center;
  transition: transform 0.3s ease;
}

.gf-cover-item:hover {
  transform: translateY(-0.3em);
}

.gf-cover-item img {
  width: 15em;
  height: 15em;
}


/* Responsive tweak for mobile/tablet */
@media (max-width: 768px) {
  .gf-cover-items {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gf-cover-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .gf-type-card {
    flex: 1 1 100%;
  }

  .gf-health-types p,
  .gf-health-cover p {
    max-width: 100%;
  }
}

.gf-health-checklist {
  background: #fff;
  padding: 4em 2em;
}

.gf-health-checklist h2 {
  text-align: center;
  font-size: 1.6rem;
  color: #019444;
  margin-bottom: 2em;
  font-weight: 700;
}

.gf-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
  gap: 2em;
}

.gf-checklist-item {
  display: flex;
  gap: 1em;
  background-color: #fff;
  border-radius: 0.5em;
  padding: 1.5em;
  box-shadow: 0 0.2em 0.5em rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.gf-checklist-item:hover {
  transform: translateY(-0.3em);
}

.gf-checklist-item img {
  width: 8em;
  height: 8em;
  flex-shrink: 0;
  background-color: rgba(123, 201, 63, 0.25);
  padding: 0.5em;
  border-radius: 0.5em;
}

.gf-checklist-item h3 {
  margin-bottom: 0.5em;
  font-size: 1.1rem;
  color: #019444;
}

.gf-checklist-item p {
  font-size: 1rem;
  color: var(--gf-muted);
  line-height: 1.5em;
}

/* Optional responsive spacing */
@media (max-width: 768px) {
  .gf-health-checklist {
    padding: 3em 1em;
  }
}

@media (max-width: 1024px) {
  .gf-checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gf-checklist-grid {
    grid-template-columns: 1fr;
  }

  .gf-checklist-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .gf-checklist-item img {
    margin-bottom: 1em;
  }
}

.gf-health-benefits-section {
  background: rgba(123, 201, 63, 0.25);
  color: var(--gf-text);
  padding: 4em 1em;
}

.gf-health-benefits-section h2 {
  text-align: center;
  font-size: 1.6rem;
  color: #019444;
  margin-bottom: 2em;
  font-weight: 700;
}

.gf-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
  gap: 2em;
}

.gf-benefit-card {
  background: #fff;
  padding: 2em;
  border-radius: 0.5em;
  box-shadow: 0 0.3em 0.6em rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.gf-benefit-card:hover {
  transform: translateY(-0.3em);
  background-color: #019444;
  color: #fff;
}

/* .gf-benefit-card img {
  width: 4em;
  height: 4em;
  margin-bottom: 1em;
  background-color: #e8f8f0;
  padding: 0.7em;
  border-radius: 50%;
} */

.gf-benefit-card h3 {
  font-size: 1.2rem;
  color: var(--gf-dark);
  margin-bottom: 0.5em;
}

.gf-benefit-card p {
  font-size: 1rem;
  color: var(--gf-muted);
  line-height: 1.5em;
}

@media (max-width: 768px) {
  .gf-health-benefits-section {
    padding: 3em 1em;
  }

  .gf-health-benefits-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5em;
  }

  .gf-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }

  .gf-benefit-card {
    padding: 1.5em;
  }

  .gf-benefit-card img {
    width: 3.2em;
    height: 3.2em;
    padding: 0.5em;
  }

  .gf-benefit-card h3 {
    font-size: 1.1rem;
  }

  .gf-benefit-card p {
    font-size: 0.95rem;
  }
}
