/* style/faq.css */
.page-faq {
  font-family: Arial, sans-serif;
  color: #e0e0e0; /* Light text for dark background */
  background-color: #121f2e; /* Darker background based on main color */
}

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

.page-faq-hero-section {
  background: linear-gradient(135deg, #1A2E44, #2A4764);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

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

.page-faq-hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-faq-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Accent gold */
  color: #1A2E44; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-faq-btn:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-faq-text-link {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  font-weight: bold;
}

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

.page-faq-accordion-section {
  padding: 80px 0;
  background-color: #1A2E44; /* Main dark blue */
}

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

.page-faq-accordion-item {
  background-color: #2a3d54; /* Slightly lighter dark blue */
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-faq-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 25px 30px;
  background-color: #2a3d54; /* Match item background */
  color: #FFFFFF; /* White for header text */
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-faq-accordion-header h3 {
  margin: 0;
  color: #FFFFFF; /* Ensure h3 text is white */
}

.page-faq-accordion-header:hover {
  background-color: #3b506b;
}

.page-faq-accordion-icon {
  font-size: 1.8em;
  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 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #1A2E44; /* Main dark blue for content */
  color: #e0e0e0; /* Light gray for content text */
}

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

.page-faq-accordion-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 1.1em;
}

.page-faq-image-small {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-faq-cta-section {
  background-color: #121f2e; /* Darker background */
  padding: 80px 0;
  text-align: center;
}

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

.page-faq-cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

  .page-faq-accordion-content {
    padding: 0 25px;
  }

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

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

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

@media (max-width: 480px) {
  .page-faq-hero-section,
  .page-faq-accordion-section,
  .page-faq-cta-section {
    padding: 60px 0;
  }

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

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

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

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

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

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