.about__us {
  position: relative;
  background-image: url("../img/72.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 150px;
}

/* затемнение поверх картинки */
.about__us__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;

  padding: 32px;
  font-family: 'Montserrat', sans-serif;
}

/* заголовок */
.about__us__title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.faq {
  padding: 32px 16px 48px;
  font-family: 'Montserrat', sans-serif;
  max-width: 760px;
  margin: 0 auto;
  color: #2d2f2f;
}

.faq__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq__subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
}

/* list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* item */
.faq-item {
  border: 1px solid #e3e6ea;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}

/* header */
.faq-item__header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 16px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

.faq-item__question {
  text-align: left;
}

.faq-item__icon {
  transition: transform 0.3s ease;
  color: #2d2f2f;
}

/* content */
.faq-item__content {
	font-family: 'Montserrat', sans-serif;
  display: none;
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #1c1c1c;
}

.faq-item__content ul {
  padding-left: 18px;
  margin: 8px 0;
}

.faq-item__content li {
  margin-bottom: 6px;
}

/* OPEN STATE */
.faq-item.is-open .faq-item__content {
  display: block;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  color:#2fa5ed;
}

.faq-item.is-open .faq-item__header {
  color: #2fa5ed;
}

.tg-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 10px;

  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid #37AEE2;

  background: #fff;
  color: #2fa5ed;

  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  cursor: pointer;
  transition: background 0.25s ease;
}

.tg-button:hover {
  border: 2px solid #37AEE2;
}

.tg-button__icon {
  width: 24px;
  height: 24px;
  display: block;
}

.tg-button-wrapper {
  display: flex;
  justify-content: center;
}
