/* Refined How I Can Help section styles */
.how-help-section {
  background: #fff;
}
.how-help-accent {
  width: 60px;
  height: 3px;
  background: #A01C1C;
  margin: 0 auto 24px auto;
  border-radius: 2px;
}
.how-help-card {
  min-height: 440px;
  background: #F7F6F4;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  padding: 36px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.2s, background 0.2s;
}
.how-help-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  background: #f2f1ee;
}
.how-help-problem {
  font-size: 1em;
  color: #7A7A7A;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 18px;
}
.how-help-card-heading {
  font-size: 1.35em;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.4em;
}
.how-help-card-subtitle {
  font-size: 1.08em;
  color: #222;
  font-weight: 400;
  margin-bottom: 1.1em;
}
.how-help-label {
  font-size: 0.98em;
  color: #A01C1C;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.how-help-list {
  text-align: left;
  padding-left: 1.2em;
  margin-bottom: 0;
}
.how-help-list li {
  margin-bottom: 0.5em;
  font-size: 1em;
  line-height: 1.6;
}
@media (max-width: 1199px) {
  .how-help-card {
    min-height: 460px;
  }
}
@media (max-width: 991px) {
  .how-help-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  .how-help-card {
    min-height: 440px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .how-help-cards {
    flex-direction: column !important;
    gap: 0;
  }
  .how-help-card {
    min-height: 0;
    margin-bottom: 24px;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}
