.support-helps-section,
.support-helps-section * {
  box-sizing: border-box;
}

.support-helps-section {
  width: 100%;
  padding: 35px 20px 30px;
  background: #fffdf9;
  text-align: center;
  font-family: inherit;
}

.support-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 28px;
}

.support-heading span {
  width: 175px;
  height: 1px;
  background: #f4b99f;
}

.support-heading h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #082b17;
}

.support-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.support-card {
  padding: 0 26px;
  min-height: 165px;
  border-right: 1px solid #f0bda8;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.35s ease;
}

.support-card:last-child {
  border-right: none;
}

.support-card:hover {
  transform: translateY(-7px);
}

.support-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff1e8;
  border: 1px solid #f0bda8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.35s ease;
}

.support-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #ef4b17;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.35s ease;
}

.support-card:hover .support-icon {
  background: #ef4b17;
  border-color: #ef4b17;
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 12px 24px rgba(239, 75, 23, 0.18);
}

.support-card:hover .support-icon svg {
  stroke: #ffffff;
  transform: scale(1.06);
}

.support-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: #082b17;
  transition: color 0.35s ease;
}

.support-card:hover h3 {
  color: #ef4b17;
}

.support-card p {
  margin: 0;
  max-width: 190px;
  font-size: 14px;
  line-height: 1.7;
  color: #111827;
}

@media (max-width: 1024px) {
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 0;
  }

  .support-card {
    border-right: none;
    border-bottom: 1px solid #f0bda8;
    padding-bottom: 24px;
  }

  .support-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .support-helps-section {
    padding: 32px 15px;
  }

  .support-heading {
    gap: 12px;
  }

  .support-heading span {
    width: 45px;
  }

  .support-heading h2 {
    font-size: 23px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .support-card {
    border-right: none;
    border-bottom: 1px solid #f0bda8;
    padding: 0 10px 22px;
    min-height: auto;
  }

  .support-card:last-child {
    border-bottom: none;
  }

  .support-icon {
    width: 58px;
    height: 58px;
  }

  .support-icon svg {
    width: 30px;
    height: 30px;
  }
}
