
/* Section Styling */
#how-we-help {
  padding: 50px 20px;
  background-color: #ffffff;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.section-title {
 text-align: left;
    padding: 5px;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Grid Layout for 2-2 */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: start;
}

/* Help Box Styling */
.help-box {
     background-color: #0073e6a3;
    color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.help-title {
    font-size: 20px;
    margin-bottom: 22px;
    color: #fff;
}

.help-description {
  font-size: 0.95rem;
  line-height: 1.5;
      color: #fff;
}

/* Ensure 2-2 Layout */
@media (min-width: 768px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Stacked Layout for Small Screens */
@media (max-width: 767px) {
  .section-title {
    font-size: 1.8rem;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .help-box {
    padding: 15px;
  }
}