/* style/faq.css */
.page-faq {
  font-family: 'Arial', sans-serif;
  color: #f5e6d0; /* Light text for dark background */
  background-color: #0A192F; /* Primary dark background */
}

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

.page-faq-hero {
  background: linear-gradient(135deg, #0A192F 0%, #203657 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq-hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #f5e6d0;
}

.page-faq-section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-faq-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-faq-highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-faq-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-faq-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue text */
}

.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: #0A192F;
  transform: translateY(-2px);
}

.page-faq-btn-large {
  padding: 15px 40px;
  font-size: 1.2em;
}

.page-faq-text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.page-faq-accordion-section {
  padding: 60px 0;
  background-color: #0A192F;
}

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

.page-faq-accordion-item {
  background-color: #1A2E47; /* Slightly lighter dark blue */
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px 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: #1A2E47;
  color: #f5e6d0;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-faq-accordion-header:hover {
  background-color: #2A405C;
}

.page-faq-accordion-question {
  margin: 0;
  color: #f5e6d0;
  font-size: 1em; /* Adjust relative to button font size */
}

.page-faq-accordion-icon {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD700;
}

.page-faq-accordion-header.active .page-faq-accordion-icon {
  transform: rotate(45deg);
}

.page-faq-accordion-content {
  padding: 0 25px;
  background-color: #0A192F;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-faq-accordion-content.active {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-faq-accordion-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #d0dbe9; /* Slightly lighter text for readability */
}

.page-faq-accordion-content .page-faq-btn-secondary {
  margin-top: 10px;
}

.page-faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
}

.page-faq-cta-section {
  background-color: #1A2E47;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faq-cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-faq-cta-description {
  font-size: 1.3em;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #f5e6d0;
}

.page-faq-cta-image {
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@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.1em;
    padding: 15px 20px;
  }

  .page-faq-accordion-content.active {
    padding: 15px 20px;
  }

  .page-faq-cta-title {
    font-size: 2.2em;
  }

  .page-faq-cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-faq-hero-title {
    font-size: 2em;
  }

  .page-faq-hero-description {
    font-size: 0.9em;
  }

  .page-faq-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-faq-btn-large {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-faq-accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-faq-accordion-content.active {
    padding: 12px 15px;
  }

  .page-faq-cta-title {
    font-size: 1.8em;
  }

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