.page-faqs {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #d0d0d0; /* Light gray for main text on dark background */
  background-color: #0A2239; /* Main background color */
}

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

.page-faqs__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1a3a55 100%); /* Dark blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-faqs__hero-title {
  font-size: 3.5em;
  color: #E0B400; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faqs__hero-subtitle {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-faqs__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
}

.page-faqs__section {
  padding: 60px 0;
  background-color: #0A2239;
}

.page-faqs__section:nth-of-type(even) {
  background-color: #0d2a45; /* Slightly lighter dark blue for alternating sections */
}

.page-faqs__section-title {
  font-size: 2.5em;
  color: #E0B400;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-faqs__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B400;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-faqs__accordion-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-faqs__accordion-item {
  background-color: #1a3a55; /* Darker blue for accordion items */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-faqs__accordion-header {
  display: block;
  padding: 20px 25px;
  font-size: 1.3em;
  font-weight: bold;
  color: #f0f0f0; /* Light text for headers */
  cursor: pointer;
  position: relative;
  background-color: #1a3a55;
  transition: background-color 0.3s ease;
}

.page-faqs__accordion-header:hover {
  background-color: #2a4c6e;
}

.page-faqs__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #E0B400;
  transition: transform 0.3s ease;
}

.page-faqs__accordion-item[open] .page-faqs__accordion-header::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-faqs__accordion-content {
  padding: 0 25px 20px;
  font-size: 1.05em;
  color: #d0d0d0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-faqs__accordion-content ul,
.page-faqs__accordion-content ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-faqs__accordion-content li {
  margin-bottom: 8px;
}

.page-faqs__accordion-content strong {
  color: #E0B400;
}

.page-faqs__link-button {
  display: inline-block;
  background-color: #E0B400; /* Auxiliary color for buttons */
  color: #0A2239; /* Dark text on auxiliary button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-faqs__link-button:hover {
  background-color: #ffc900;
  transform: translateY(-2px);
}

.page-faqs__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-faqs__cta-section {
  background-color: #E0B400; /* Auxiliary color for CTA section */
  padding: 80px 0;
  text-align: center;
}

.page-faqs__cta-content {
  background-color: #0A2239; /* Main color for CTA content box */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-faqs__cta-title {
  font-size: 2.8em;
  color: #E0B400;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-faqs__cta-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-faqs__cta-button {
  display: inline-block;
  background-color: #E0B400; /* Auxiliary color for CTA button */
  color: #0A2239; /* Dark text on auxiliary button */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-faqs__cta-button:hover {
  background-color: #ffc900;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

  .page-faqs__accordion-content {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

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

  .page-faqs__cta-text {
    font-size: 1em;
  }

  .page-faqs__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
}

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

  .page-faqs__hero-subtitle {
    font-size: 0.9em;
  }

  .page-faqs__section {
    padding: 40px 0;
  }

  .page-faqs__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

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

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

  .page-faqs__cta-text {
    font-size: 0.9em;
  }

  .page-faqs__cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
}