/* style/faq.css */
.page-faq {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

/* Hero Section */
.page-faq-hero {
  background: linear-gradient(135deg, #0A2E59 0%, #1a4f8c 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-faq-hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFA500; /* Auxiliary color for title emphasis */
  font-weight: bold;
}

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

.page-faq-hero-actions .page-faq-btn {
  margin: 0 10px;
}

/* Section Styling */
.page-faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-faq-section:nth-of-type(even) {
  background-color: #f0f5fa; /* Lighter blue-grey for alternating sections */
}

.page-faq-section-title {
  font-size: 2.2em;
  color: #0A2E59; /* Main color for section titles */
  text-align: center;
  margin-bottom: 40px;
  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: #FFA500; /* Auxiliary color for underline */
  border-radius: 2px;
}

/* Accordion Styling */
.page-faq-accordion {
  margin-top: 30px;
}

.page-faq-accordion-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-faq-accordion-header {
  background-color: #0A2E59; /* Main color for accordion header */
  color: #FFFFFF;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.15em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-faq-accordion-header:hover {
  background-color: #1a4f8c; /* Slightly lighter main color on hover */
}

.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;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-faq-accordion-content p {
  padding: 15px 0;
  color: #555;
  font-size: 1em;
}

.page-faq-accordion-content .page-faq-link {
  color: #0A2E59; /* Link color for content */
  text-decoration: underline;
}

.page-faq-accordion-content .page-faq-link:hover {
  color: #FFA500;
}

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

.page-faq-btn-primary {
  background-color: #FFA500; /* Auxiliary color for primary button */
  color: #0A2E59; /* Main color for text on primary button */
}

.page-faq-btn-primary:hover {
  background-color: #ffc04d; /* Lighter orange on hover */
  transform: translateY(-2px);
}

.page-faq-btn-secondary {
  background-color: transparent;
  color: #FFA500; /* Auxiliary color for secondary button text */
  border: 2px solid #FFA500;
}

.page-faq-btn-secondary:hover {
  background-color: #FFA500;
  color: #0A2E59;
  transform: translateY(-2px);
}

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

/* Image Styling */
.page-faq-image-small {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Call to Action Section */
.page-faq-cta {
  background: linear-gradient(90deg, #0A2E59, #1a4f8c); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-faq-cta-content {
  max-width: 800px;
}

.page-faq-cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFA500;
}

.page-faq-cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
}

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

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

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

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

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

  .page-faq-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .page-faq-hero-actions .page-faq-btn {
    margin: 0;
  }

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

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

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

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

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

  .page-faq-btn {
    padding: 8px 15px;
    font-size: 0.8em;
  }
}