/* style/resources-sv88-faq.css */
.page-resources-sv88-faq {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2463; /* Main background color (Royal Blue) */
}

.page-resources-sv88-faq-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A2463 0%, #1A3B83 100%); /* Dark blue gradient */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.page-resources-sv88-faq-hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-resources-sv88-faq-hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  line-height: 1.2;
}

.page-resources-sv88-faq-hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #C0C0C0; /* Lighter gray for description */
}

.page-resources-sv88-faq-hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-resources-sv88-faq-hero-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-resources-sv88-faq-hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-resources-sv88-faq-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-resources-sv88-faq-section {
  padding: 60px 0;
}

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

.page-resources-sv88-faq-section-description {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #C0C0C0;
}

.page-resources-sv88-faq-intro {
  background-color: #1A3B83; /* Slightly lighter blue for intro */
}

.page-resources-sv88-faq-accordion {
  background-color: #0A2463;
}

.page-resources-sv88-faq-item {
  background-color: #1A3B83; /* Background for each FAQ item */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-sv88-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  font-size: 1.25em;
  font-weight: bold;
  color: #FFD700; /* Gold for questions */
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources-sv88-faq-question:hover {
  background-color: #2D509C; /* Darker blue on hover */
}

.page-resources-sv88-faq-question.active {
  background-color: #2D509C;
}

.page-resources-sv88-faq-icon {
  width: 28px;
  height: 28px;
  margin-right: 15px;
  filter: invert(80%) sepia(90%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Make icon gold */
}

.page-resources-sv88-faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-sv88-faq-question.active .page-resources-sv88-faq-toggle {
  transform: rotate(45deg);
}

.page-resources-sv88-faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #0A2463; /* Dark blue background for answer */
  color: #E0E0E0; /* Light gray text for answer */
}

.page-resources-sv88-faq-answer.active {
  max-height: 1000px; /* Adjust as needed for content */
  padding: 20px 25px 25px 25px;
}

.page-resources-sv88-faq-answer p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-resources-sv88-faq-answer ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-resources-sv88-faq-answer li {
  margin-bottom: 8px;
}

.page-resources-sv88-faq-inline-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-sv88-faq-cta {
  background-color: #1A3B83;
  text-align: center;
}

.page-resources-sv88-faq-cta-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-resources-sv88-faq-cta-button {
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.page-resources-sv88-faq-cta-button.btn-primary {
  background-color: #FFD700;
  color: #0A2463;
}

.page-resources-sv88-faq-cta-button.btn-primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-resources-sv88-faq-cta-button.btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-resources-sv88-faq-cta-button.btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

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

  .page-resources-sv88-faq-hero-description {
    font-size: 1.1em;
  }

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

  .page-resources-sv88-faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }

  .page-resources-sv88-faq-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }

  .page-resources-sv88-faq-toggle {
    font-size: 1.5em;
  }

  .page-resources-sv88-faq-answer.active {
    padding: 15px 20px 20px 20px;
  }

  .page-resources-sv88-faq-cta-button {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .page-resources-sv88-faq-hero {
    padding: 40px 15px;
    min-height: 300px;
  }

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

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

  .page-resources-sv88-faq-section {
    padding: 40px 0;
  }

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

  .page-resources-sv88-faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-resources-sv88-faq-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }

  .page-resources-sv88-faq-answer.active {
    padding: 10px 15px 15px 15px;
  }

  .page-resources-sv88-faq-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}