.faq-content {
  background: #fff;
  padding: 30px 0 20px;
}

.faq-inner {
  max-width: 1200px;   /* ширина рядків як в оригіналі */
  margin: 0 auto;
  padding: 0 40px;
}

.faq-text{
    max-width: 860px;
}

.faq-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 32px;
  color:  #212529;
}

.faq-inner p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 18px;
  color:  #212529;
}

.faq-link {
  color: #e86020;
  text-decoration: none;
}

.faq-link:hover{
 text-decoration: underline;
}

/* курсивний абзац */
.faq-note {
  font-style: italic;
  margin-top: 10px;
}


/* TABS */


.faq-tabs-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 36px; /* більше простору між табами */
}

.faq-tabs-inner::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 40px;        /* ← зменшуємо зліва */
  right: 40px;       /* ← зменшуємо справа */
  height: 1px;
  background: #e6e9ed;
}

.faq-tab {
   background: none;
  border: none;
  padding: 20px 0;        /* ⬅ більше по вертикалі */
  font-size: 18px;          /* ⬅ більший текст */
  line-height: 1.4;
  color: #212529;
  cursor: pointer;
  position: relative;
  font-weight: 400;
  text-align: start;
}

.faq-tab.active {
  font-weight: 500;
}

.faq-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: #c5531b;
}

/* FAQ LIST */
.faq-list {
  background: #fff;
  display: none;
}

.faq-list.active {
  display: block;
}

.faq-list-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.faq-question-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 20px;
}

.faq-number {
  font-size: 36px;
  color: #c5531b;
  font-weight: 500;
}

.faq-question {
  font-size: 24px;
  color: #0b2d4b;
}

.faq-more {
  font-size: 16px;
  color: #c5531b;
  text-decoration: none;
  white-space: nowrap;
  text-decoration: none;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px; /* ← ось ТУТ керуєш відступом */
  

}

.view-more-arrow {
  line-height: 0;
  display: inline-block;
  position: relative;
  top: -1px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.view-more-text {
  text-decoration: underline;
  cursor: pointer;

}

.faq-answer {
  margin-top: 20px;
  margin-left: 6%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p{
    font-size: 18px;
    margin-bottom: 7px;
    margin-top: 7px;
    line-height: 1.55;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
}



.faq-answer-list{
    list-style: disc;        /* повертає кружки ● */
  margin-left: 28px;       /* відступ для маркерів */
  padding-left: 0;
}


.faq-answer-list li{
    list-style:disc !important;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.55;
}

.faq-answer-list-numbered {
  list-style: decimal !important;
  padding-left: 40px;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.55;
}

.faq-answer-list-numbered li{
  margin-bottom: 8px;
}


.faq-answer h4{
  font-size: 18px;
  margin-top: 10px;
}

.faq-answer-list-dop{
  list-style-type: circle !important;
  list-style-position: outside;
  padding-left: 40px;
  padding-top: 15px;
  padding-bottom: 1px;
}