.home-insurance-reasons {
  padding: 4em 2em;
  background: #f8f9fa;
}

.section-heading {
  text-align: center;
  font-size: 1.6em;
  color: #109444;
  margin-bottom: 2em;
  font-weight: 700;
}

.home-insurance-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2em;
  position: relative;
}

.left-column,
.right-column {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.reason {
  margin-bottom: 2em;
}

.reason h3 {
  display: flex;
  align-items: center;
  font-size: 1.2em;
  margin-bottom: 0.5em;
}

.reason-circle {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 50%;
  background-color: #7BC93F;
  color: white;
  font-weight: bold;
  margin-right: 0.6em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.reason p {
  color: #555;
  line-height: 1.6;
}

.divider {
  width: 2px;
  background-image: linear-gradient(to bottom, #ccc 30%, transparent 30%);
  background-size: 2px 20px;
  background-repeat: repeat-y;
  height: auto;
}

/* ✅ Responsive Rules */
@media (max-width: 768px) {
  .home-insurance-grid {
    flex-direction: column;
    align-items: center;
  }

  .left-column,
  .right-column {
    max-width: 100%;
  }

  .section-heading {
    font-size: 1.4em;
  }

  .reason h3 {
    font-size: 1.1em;
  }

  .reason p {
    font-size: 1em;
  }

  .divider {
    display: none;
  }
}

/*eligibility section*/
.gf-eligibility-section {
  background-color: rgba(123, 201, 63, 0.25);
  padding: 4em 2em;
}

.gf-eligibility-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}



.gf-eligibility-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.gf-eligibility-item {
  background: #fff;
  padding: 2em;
  border-radius: 1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  transition: transform 0.3s ease;
  border: 2px dashed #7BC93F;
}

.gf-eligibility-item:hover {
  transform: translateY(-6px);
}

.gf-eligibility-item h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: #2b722b;
  margin-bottom: 0.5em;
}

.gf-eligibility-item p {
  font-size: 1em;
  color: #333;
  line-height: 1.5;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .gf-eligibility-items {
    flex-direction: column;
    align-items: center;
  }

  .gf-eligibility-item {
    width: 90%;
  }

  .gf-eligibility-container h2 {
    font-size: 1.5em;
  }
}


/*insurance cover*/
.home-insurance-coverage {
  padding: 3em 1em;
  background-color: #f8f9fa;
}


.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.coverage-item {
  background: #fff;
  padding: 1.5em;
  border-left: 5px solid #7BC93F;
  border-right: 5px solid #7BC93F;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  border-radius: 0.5em;
}

.coverage-item:hover {
  transform: translateY(-5px);
}

.coverage-item h3 {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 0.5em;
}

.coverage-item p {
  font-size: 1.05em;
  line-height: 1.6;
  color: #555;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }

  .section-heading {
    font-size: 1.8em;
  }

  .coverage-item {
    padding: 1.2em;
  }

  .coverage-item h3 {
    font-size: 1.2em;
  }

  .coverage-item p {
    font-size: 1em;
  }
}

