/* style/faq.css */
.page-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2239; /* Deep blue primary color */
}

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

.page-faq-container--reversed {
  flex-direction: row-reverse;
}

.page-faq-hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3A5A 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

.page-faq-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
}

.page-faq-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #B0C4DE; /* Light blue-grey for subtitle */
}

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

.page-faq-btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2239; /* Deep blue */
}

.page-faq-btn--primary:hover {
  background-color: #E6C200; /* Slightly darker gold */
}

.page-faq-btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-faq-btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
}

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

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

.page-faq-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-faq-section:last-of-type {
  border-bottom: none;
}

.page-faq-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 40px;
  text-align: center;
  width: 100%;
}

.page-faq-accordion {
  flex: 2;
  min-width: 300px;
}

.page-faq-image {
  flex: 1;
  min-width: 250px;
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-faq-image--left {
  order: -1; /* For reversed layout */
}

.page-faq-accordion-item {
  background-color: #1A3A5A; /* Darker blue for accordion item */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-faq-accordion-header {
  font-size: 1.3em;
  padding: 20px 25px;
  background-color: #0A2239; /* Deep blue for header */
  color: #FFD700; /* Gold for header text */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-faq-accordion-header:hover {
  background-color: #102D4C; /* Slightly lighter deep blue */
}

.page-faq-accordion-header::after {
  content: '+';
  font-size: 1.5em;
  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, padding 0.4s ease-out;
  color: #E0E0E0; /* Light grey for content text */
}

.page-faq-accordion-content.active {
  max-height: 500px; /* Adjust based on expected content height */
  padding: 20px 25px;
}

.page-faq-accordion-content p {
  margin-bottom: 15px;
}

.page-faq-accordion-content p:last-child {
  margin-bottom: 0;
}

.page-faq-cta {
  background-color: #1A3A5A; /* Darker blue */
  padding: 80px 20px;
  text-align: center;
}

.page-faq-cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-faq-cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #B0C4DE;
}

.page-faq-cta-buttons .page-faq-btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq-title {
    font-size: 2.8em;
  }

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

  .page-faq-container {
    flex-direction: column;
    align-items: center;
  }

  .page-faq-container--reversed {
    flex-direction: column;
  }

  .page-faq-image {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .page-faq-image--left {
    order: 0;
  }
}

@media (max-width: 768px) {
  .page-faq-title {
    font-size: 2.2em;
  }

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

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

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

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

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

  .page-faq-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .page-faq-cta-buttons .page-faq-btn {
    margin: 0;
    width: 100%;
  }
}

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

  .page-faq-hero {
    padding: 50px 15px;
  }

  .page-faq-section {
    padding: 40px 0;
  }

  .page-faq-container {
    padding: 15px;
  }

  .page-faq-image {
    max-width: 100%;
  }
}