/* style/faq.css */
.page-faq {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A1D2B; /* Slightly lighter dark background */
  line-height: 1.6;
}

.page-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-faq__hero {
  background: linear-gradient(135deg, #2A2E43 0%, #1A1D2B 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-faq__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq__hero-title .highlight {
  color: #FFFFFF;
}

.page-faq__hero-description {
  font-size: 1.2em;
  color: #B0B0B0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-faq__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  max-width: 50%;
  height: auto;
}

.page-faq__hero-image {
  width: 100%;
  height: auto;
}

.page-faq__accordion-section {
  padding: 60px 0;
  background-color: #2A2E43;
  position: relative;
  z-index: 1;
}

.page-faq__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-faq__section-title .highlight {
  color: #FFFFFF;
}

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

.page-faq__accordion-item {
  background-color: #1A1D2B;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-faq__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background-color: #2A2E43;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #FFD700;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.page-faq__accordion-header:hover {
  background-color: #3A3F57;
}

.page-faq__accordion-header:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.5);
}

.page-faq__accordion-question {
  margin: 0;
  color: inherit;
  font-size: 1em; /* Relative to button font size */
}

.page-faq__accordion-icon {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-faq__accordion-header[aria-expanded="true"] .page-faq__accordion-icon {
  transform: rotate(45deg);
}

.page-faq__accordion-content {
  padding: 0 25px;
  background-color: #1A1D2B;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-faq__accordion-content p {
  padding-bottom: 20px;
  color: #B0B0B0;
  font-size: 1.1em;
}

.page-faq__accordion-content a {
  display: inline-block;
  margin-top: 10px;
}

.page-faq__cta-section {
  background-color: #1A1D2B;
  padding: 80px 0;
}

.page-faq__cta-section .page-faq__container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-faq__cta-content {
  flex: 1;
  min-width: 300px;
}

.page-faq__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-faq__cta-title .highlight {
  color: #FFFFFF;
}

.page-faq__cta-description {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

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

.page-faq__cta-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-faq__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.page-faq__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-faq__btn--primary {
  background-color: #FFD700;
  color: #2A2E43;
  border: 2px solid #FFD700;
}

.page-faq__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #2A2E43;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq__hero-title {
    font-size: 2.5em;
  }

  .page-faq__hero-description {
    font-size: 1em;
  }

  .page-faq__section-title {
    font-size: 2em;
  }

  .page-faq__accordion-header {
    font-size: 1.2em;
    padding: 15px 20px;
  }

  .page-faq__accordion-content p {
    font-size: 1em;
    padding: 0 20px 15px 20px;
  }

  .page-faq__cta-section .page-faq__container {
    flex-direction: column;
    text-align: center;
  }

  .page-faq__cta-buttons {
    justify-content: center;
  }

  .page-faq__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-faq__hero {
    padding: 60px 0;
  }

  .page-faq__hero-title {
    font-size: 2em;
  }

  .page-faq__hero-description {
    margin-bottom: 30px;
  }

  .page-faq__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}