.faq-header {
  width: 100%;
  padding: 56px 24px 48px;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
}

.faq-header__title {
  margin: 0 0 20px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1c1c1c;
}

.faq-header__subtitle {
  margin: 0 0 28px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: #1c1c1c;
}

.faq-header__text {
  margin: 0 auto;
  max-width: 720px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 400;
  line-height: 1.65;
  color: #333;
}

.faq-body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px) 80px;
  box-sizing: border-box;
}

.faq-sidebar {
  flex: 0 1 360px;
  max-width: 100%;
}

.faq-sidebar__image img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-help {
  margin-top: 36px;
}

.faq-help__title {
  margin: 0 0 24px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  color: #1c1c1c;
}

.faq-help__highlight {
  color: #d3b574;
}

.faq-help__button {
  display: inline-block;
  margin-bottom: 28px;
  padding: 12px 36px;
  border: none;
  border-radius: 999px;
  background: #1c1c1c;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
}

.faq-help__button:hover {
  background: #333;
}

.faq-help__contacts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-help__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  color: #1c1c1c;
  font-weight: bold;
}

.faq-help__contact:last-child {
  margin-bottom: 0;
}

.faq-help__contact a {
  color: inherit;
  text-decoration: none;
}

.faq-help__contact a:hover {
  color: #d3b574;
}

.faq-help__icon {
  display: inline-flex;
  flex-shrink: 0;
  color: #1c1c1c;
}

.faq-list {
  flex: 1 1 640px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item__summary {
  display: flex;
  align-items: stretch;
  list-style: none;
  cursor: pointer;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  background: #d3b574;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1c1c1c;
  transition: background-color 0.45s ease, color 0.45s ease;
}

.faq-item[open] .faq-item__number {
  background: #000;
  color: #fff;
}

.faq-item__question {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: #f3f3f3;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  color: #1c1c1c;
  transition: background-color 0.45s ease, color 0.45s ease;
}

.faq-item__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  background: #f3f3f3;
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #d3b574;
  transition: background-color 0.45s ease, color 0.45s ease;
}

.faq-item__toggle::before {
  content: "+";
  font-weight: 700;
  transition: color 0.45s ease;
}

.faq-item[open] .faq-item__question,
.faq-item[open] .faq-item__toggle {
  background: #d3b574;
}

.faq-item[open] .faq-item__toggle {
  color: #1c244b;
}

.faq-item[open] .faq-item__toggle::before {
  content: "−";
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  background: #fff;
  transition: grid-template-rows 0.55s ease;
}

.faq-item[open] .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer-inner {
  overflow: hidden;
}

.faq-item__answer-inner p {
  margin: 0;
  padding: 0 20px 0 76px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #333;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.45s ease 0.05s, transform 0.45s ease 0.05s, padding 0.55s ease;
}

.faq-item[open] .faq-item__answer-inner p {
  padding: 16px 20px 20px 76px;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .faq-body {
    padding-bottom: 64px;
  }

  .faq-sidebar,
  .faq-list {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .faq-header {
    padding: 40px 20px 32px;
  }

  .faq-header__subtitle {
    margin-bottom: 20px;
  }

  .faq-body {
    gap: 32px;
    padding: 0 20px 48px;
  }

  .faq-item__number,
  .faq-item__toggle {
    width: 44px;
  }

  .faq-item__question {
    padding: 14px 16px;
  }

  .faq-item__answer-inner p {
    padding-left: 60px;
  }

  .faq-item[open] .faq-item__answer-inner p {
    padding: 14px 16px 18px 60px;
  }
}
