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

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

/* Hero Section */
.page-faq__hero {
  background: linear-gradient(135deg, #0A2463 0%, #0A2463 60%, #E3B505 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-faq__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-faq__highlight {
  color: #E3B505; /* Wealth Gold for emphasis */
}

.page-faq__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #D3D3D3;
}

.page-faq__cta-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-faq__cta-button:hover {
  background-color: #FFC107; /* Slightly brighter gold */
  transform: translateY(-2px);
}

/* FAQ Section */
.page-faq__section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-faq__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-faq__accordion-item {
  background-color: #FDFDFD;
  border: 1px solid #EEE;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.page-faq__accordion-item.active {
  border-color: #E3B505;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-faq__accordion-header {
  font-size: 1.3em;
  color: #0A2463;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F0F5FF; /* Lighter blue background for header */
  border-bottom: 1px solid #E0E0E0;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.page-faq__accordion-item.active .page-faq__accordion-header {
  background-color: #E3B505;
  color: #0A2463;
}

.page-faq__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #0A2463;
  transition: transform 0.3s ease;
}

.page-faq__accordion-item.active .page-faq__accordion-header::after {
  content: '-';
  transform: rotate(0deg);
  color: #0A2463;
}

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

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

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

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

.page-faq__inline-link {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-faq__inline-link:hover {
  color: #E3B505;
}

/* CTA Banner */
.page-faq__cta-banner {
  background-color: #0A2463;
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-faq__cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-faq__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

.page-faq__cta-text {
  margin-bottom: 30px;
}

.page-faq__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-faq__cta-description {
  font-size: 1.1em;
  color: #D3D3D3;
  max-width: 700px;
  margin: 0 auto;
}

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

.page-faq__cta-button--primary {
  background-color: #E3B505;
  color: #0A2463;
}

.page-faq__cta-button--primary:hover {
  background-color: #FFC107;
}

.page-faq__cta-button--secondary {
  background-color: transparent;
  color: #E3B505;
  border: 2px solid #E3B505;
}

.page-faq__cta-button--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-faq__hero {
    padding: 60px 0;
  }

  .page-faq__title {
    font-size: 2.5em;
  }

  .page-faq__subtitle {
    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 {
    padding: 15px 20px;
  }

  .page-faq__cta-banner {
    padding: 40px 0;
  }

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

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

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

  .page-faq__cta-button {
    width: 80%;
    max-width: 300px;
  }
}

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

  .page-faq__subtitle {
    font-size: 0.9em;
  }

  .page-faq__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

  .page-faq__accordion-content {
    padding: 12px 15px;
  }

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