.solution-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}
.hero-text {
  flex: 1;
  min-width: 300px;
}
.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.lead-text {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.hero-image {
  flex: 1;
  min-width: 250px;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.solution-problem-solution {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.solution-problem-solution > div {
  flex: 1;
}
.solution-problem-solution ul {
  list-style: none;
  padding: 0;
  margin: 0px;
}
.solution-problem-solution li {
  margin-bottom: 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.solution-problem-solution .icon {
  font-weight: bold;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  text-align: center;
  font-size: 1.2rem;
}
.problem .icon {
  color: #e63946; /* красный минус */
}
.solution .icon {
  color: #54b435; /* зелёная галочка */
}

.solution-benefits {
  background: #f9fafb;
}
.solution-benefits .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0f172a;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.benefit-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.04);
  text-align: center;
}
.benefit-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  background: #54b435;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}
.benefit-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.benefit-text {
  font-size: 15px;
  color: #475569;
}

.solution-steps-block {
  background-color: #f7f7f7;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 40px;
  text-align: center;
}

/* Горизонтальная линия */
.steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 40px 0;
}

.step-item {
  position: relative;
  text-align: center;
  flex: 1;
}

/* Линии */
.step-item::before,
.step-item::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 50%;
  height: 2px;
  background-color: #dcdcdc;
  z-index: 0;
}

/* Левая половина линии */
.step-item::before {
  left: 0;
}

/* Правая половина линии */
.step-item::after {
  right: 0;
}

/* Убираем линию слева у первого элемента */
.step-item:first-child::before {
  display: none;
}

/* Убираем линию справа у последнего элемента */
.step-item:last-child::after {
  display: none;
}

/* Кружочек */

.step-circle {
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  color: #54b435;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-text {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

@media screen and (max-width:720px) {
   .steps {
   flex-wrap: wrap;
  gap: 20px; /* расстояние между колонками и рядами */
}

  .steps > * {
  flex: 1 1 calc(50% - 10px); /* 2 колонки */
  box-sizing: border-box;
}
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}

.faq-question {
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}

.faq-answer {
  display: none;
  padding-top: 0.5rem;
  color: #444;
}

.faq-item.active .faq-answer {
  display: block;
}
