.page-faq {
  background-color: #121212;
  color: #ffffff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-faq__dark-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 60px 20px;
}

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

.page-faq__main-title {
  font-size: 38px;
  font-weight: bold;
  color: #E5B80B; /* Gold color for main title */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-faq__description-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-faq__faq-list {
  margin-top: 30px;
}

/* FAQ item styles */
.page-faq__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background-color: #1a3a70; /* Darker blue for FAQ item background */
}

.page-faq__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
}

.page-faq__faq-item.active .page-faq__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background-color: #0A2463; /* Main brand color for active answer background */
  border-radius: 0 0 8px 8px;
  color: #ffffff;
}

.page-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #0A2463; /* Main brand color for question background */
  border: 1px solid #1a3a70;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-faq__faq-question:hover {
  background-color: #1a3a70;
  border-color: #E5B80B;
}

.page-faq__faq-question:active {
  background-color: #122f64;
}

.page-faq__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #E5B80B; /* Gold color for question text */
}

.page-faq__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #E5B80B;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-faq__faq-item.active .page-faq__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-faq__faq-answer p {
  margin-bottom: 15px;
  font-size: 16px;
}

.page-faq__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-faq__faq-answer a {
  color: #E5B80B;
  text-decoration: underline;
}

.page-faq__faq-answer img {
  margin-top: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-faq__image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-faq__image--full-width {
  width: 100%;
}

/* Buttons */
.page-faq__btn-primary,
.page-faq__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-faq__btn-primary {
  background-color: #E5B80B;
  color: #0A2463;
  border: 2px solid #E5B80B;
}

.page-faq__btn-primary:hover {
  background-color: #ffc81a;
  border-color: #ffc81a;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(229, 184, 11, 0.4);
}

.page-faq__btn-secondary {
  background-color: transparent;
  color: #E5B80B;
  border: 2px solid #E5B80B;
  margin-left: 15px;
}

.page-faq__btn-secondary:hover {
  background-color: #E5B80B;
  color: #0A2463;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(229, 184, 11, 0.4);
}

.page-faq__btn-large {
  padding: 15px 30px;
  font-size: 18px;
}

.page-faq__contact-cta {
  padding: 80px 20px;
  background-color: #1a3a70; /* A slightly lighter dark blue */
  text-align: center;
}

.page-faq__contact-title {
  font-size: 32px;
  color: #E5B80B;
  margin-bottom: 15px;
}

.page-faq__contact-description {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-faq__text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-faq__main-title {
    font-size: 34px;
  }

  .page-faq__description-intro {
    font-size: 17px;
  }

  .page-faq__faq-question h3 {
    font-size: 17px;
  }

  .page-faq__faq-answer p {
    font-size: 15px;
  }

  .page-faq__contact-title {
    font-size: 28px;
  }

  .page-faq__contact-description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-faq {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-faq__dark-section {
    padding: 40px 15px;
  }

  .page-faq__container {
    padding: 0 15px;
  }

  .page-faq__main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-faq__description-intro {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-faq__faq-item {
    margin-bottom: 10px;
    border-radius: 6px;
  }

  .page-faq__faq-question {
    padding: 15px 20px;
    border-radius: 6px;
  }

  .page-faq__faq-question h3 {
    font-size: 15px;
    width: calc(100% - 40px);
  }

  .page-faq__faq-toggle {
    margin-left: 15px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }

  .page-faq__faq-answer {
    padding: 0 20px;
  }

  .page-faq__faq-item.active .page-faq__faq-answer {
    padding: 15px 20px !important;
    border-radius: 0 0 6px 6px;
  }

  .page-faq__faq-answer p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .page-faq__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-faq__contact-cta {
    padding: 50px 15px;
  }

  .page-faq__contact-title {
    font-size: 24px;
  }

  .page-faq__contact-description {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .page-faq__btn-primary,
  .page-faq__btn-secondary {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0;
    margin-bottom: 15px;
    padding: 12px 20px;
    font-size: 15px;
  }

  .page-faq__btn-secondary {
    margin-top: 0;
    margin-left: 0;
  }

  .page-faq__btn-large {
    padding: 14px 25px;
    font-size: 16px;
  }

  .page-faq__hero-section {
    padding-top: 0 !important; /* Assuming shared.css handles body padding-top */
  }

  /* General image and container rules for mobile */
  .page-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-faq__section,
  .page-faq__card,
  .page-faq__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* LOGO carousel items are not present on this page, so no specific override needed */
  /* But if they were, they would need: */
  /*
  .page-faq__logo-item {
    width: 80px !important; 
    height: 80px !important; 
    max-width: 80px !important; 
    box-sizing: border-box;
  }
  */
}