.page-faq {
  color: #ffffff;
  background-color: #1A1A1A;
}

.page-faq__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-faq__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-faq__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-faq__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-faq__hero-title {
  font-size: 3.5rem;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.page-faq__hero-description {
  font-size: 1.25rem;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-faq__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-faq__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-faq__button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-faq__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-faq__button--secondary {
  background-color: #DC143C;
  color: #ffffff;
}

.page-faq__button--secondary:hover {
  background-color: #b30f30;
  transform: translateY(-3px);
}

.page-faq__accordion-section {
  padding: 60px 20px;
}

.page-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.page-faq__section-title {
  width: 100%;
  font-size: 2.8rem;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-faq__accordion-wrapper {
  flex: 2;
  min-width: 300px;
}

.page-faq__accordion-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-faq__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFD700;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.page-faq__accordion-header:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-faq__accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-faq__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-faq__accordion-content p {
  padding: 15px 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-faq__accordion-content p a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-faq__accordion-content p a:hover {
  color: #DC143C;
  text-decoration: underline;
}

.page-faq__support-image-wrapper {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.page-faq__support-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-faq__cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #DC143C 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq__cta-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-faq__cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.page-faq__cta-section .page-faq__container {
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
}

.page-faq__cta-title {
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.page-faq__cta-description {
  font-size: 1.2rem;
  color: #f0f0f0;
  max-width: 800px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-faq__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 1024px) {
  .page-faq__hero-title {
    font-size: 3rem;
  }
  .page-faq__section-title {
    font-size: 2.2rem;
  }
  .page-faq__cta-title {
    font-size: 2.5rem;
  }
  .page-faq__container {
    flex-direction: column;
  }
  .page-faq__accordion-wrapper, .page-faq__support-image-wrapper {
    width: 100%;
    flex: none;
  }
}

@media (max-width: 768px) {
  .page-faq__hero-title {
    font-size: 2.5rem;
  }
  .page-faq__hero-description {
    font-size: 1.1rem;
  }
  .page-faq__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq__button {
    width: 80%;
    max-width: 300px;
  }
  .page-faq__section-title {
    font-size: 2rem;
  }
  .page-faq__accordion-header {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-faq__accordion-content p {
    font-size: 1rem;
  }
  .page-faq__support-image, .page-faq__cta-image, .page-faq__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-faq__cta-title {
    font-size: 2rem;
  }
  .page-faq__cta-description {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .page-faq__hero-title {
    font-size: 2rem;
  }
  .page-faq__hero-description {
    font-size: 1rem;
  }
  .page-faq__button {
    width: 90%;
    max-width: unset;
  }
  .page-faq__section-title {
    font-size: 1.8rem;
  }
  .page-faq__accordion-header {
    font-size: 1rem;
    padding: 12px 15px;
  }
  .page-faq__cta-title {
    font-size: 1.8rem;
  }
  .page-faq__cta-description {
    font-size: 1rem;
  }
}