.page-faq__hero-section {
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: var(--color-background);
  color: var(--color-text-main);
}

.page-faq__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 16px;
  gap: 24px;
}

.page-faq__hero-content {
  flex: 1 1 50%;
  padding-right: 20px;
}

.page-faq__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-main);
  margin-bottom: 20px;
  max-width: 600px;
}

.page-faq__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--color-text-main);
  margin-bottom: 30px;
  max-width: 600px;
}

.page-faq__hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.page-faq__hero-side-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.page-faq__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-faq__btn-primary,
.page-faq__btn-secondary,
.page-faq__btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.05em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-faq__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: 2px solid #A84F0C;
}

.page-faq__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-faq__btn-secondary {
  background: #17191F;
  color: #FF8C1A;
  border: 2px solid #A84F0C;
}

.page-faq__btn-secondary:hover {
  background: #2a2d35;
  color: #FFB04D;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-faq__btn-inline {
  background: #17191F;
  color: #FF8C1A;
  border: 1px solid #A84F0C;
  padding: 8px 15px;
  font-size: 0.95em;
  margin-top: 10px;
  margin-right: 10px;
}

.page-faq__btn-inline:hover {
  background: #2a2d35;
  color: #FFB04D;
  transform: translateY(-1px);
}

.page-faq__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  background-color: var(--color-background);
  color: var(--color-text-main);
}

.page-faq__dark-section {
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-faq__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-faq__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--color-text-main);
  text-align: center;
  margin-bottom: 20px;
}

.page-faq__section-description {
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--color-text-main);
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-faq__faq-item {
  background-color: #17191F;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #A84F0C;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #FFF3E6;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background-color: #17191F;
  transition: background-color 0.3s ease;
}

.page-faq__faq-item[open] > .page-faq__faq-question {
  background-color: #2a2d35;
  color: #FFB04D;
}

.page-faq__faq-question::-webkit-details-marker {
  display: none;
}

.page-faq__faq-qtext {
  flex-grow: 1;
}

.page-faq__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
  transform: rotate(45deg);
}

.page-faq__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: #FFF3E6;
}

.page-faq__faq-answer p {
  margin-bottom: 15px;
}

.page-faq__answer-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 15px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-faq__contact-promo-section {
  background-color: #0D0E12;
  color: #FFF3E6;
  padding: 60px 16px;
  text-align: center;
}

.page-faq__contact-promo-section .page-faq__section-title {
  color: #FFB04D;
}

.page-faq__contact-promo-section .page-faq__cta-buttons {
  justify-content: center;
  margin-top: 30px;
}

/* General image styles */
.page-faq img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .page-faq__hero-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  /* HERO section */
  .page-faq__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px !important;
  }

  .page-faq__hero-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 20px;
  }

  .page-faq__hero-content,
  .page-faq__hero-image {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .page-faq__main-title {
    font-size: 2em;
    text-align: center;
    margin-bottom: 15px;
  }

  .page-faq__hero-description {
    font-size: 1em;
    text-align: center;
    margin-bottom: 25px;
  }

  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-faq__btn-primary,
  .page-faq__btn-secondary,
  .page-faq__btn-inline {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    font-size: 1em;
  }

  /* Content area */
  .page-faq__content-area {
    padding: 30px 15px;
  }

  .page-faq__container {
    padding: 0;
  }

  .page-faq__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-faq__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  /* FAQ items */
  .page-faq__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }

  .page-faq__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  /* Images */
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-faq__answer-image {
    margin: 10px 0;
  }

  /* Contact promo section */
  .page-faq__contact-promo-section {
    padding: 40px 15px;
  }

  .page-faq__contact-promo-section .page-faq__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}