.faq-section {
  padding: 100px 0;
  background: #630200;
}

.faq-section__inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

.faq-section__articles {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-section__article {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #f01613;
}

.faq-section__article-title {
  font-weight: 700;
  font-size: 18px;
  color: #f01613;
  margin-bottom: 8px;
}

.faq-section__article-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.faq-section__faq {
  flex: 1;
}

.faq-section__title {
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1;
}

.faq-section__text {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-section__inner {
    flex-direction: column;
  }
  .faq-section__title {
    font-size: 28px;
  }
  .faq-section__faq {
    order: 1;
    text-align: center;
  }
  .faq-section__faq .btn-primary {
    margin: 0 auto;
  }
  .faq-section__articles {
    order: 2;
  }
}
