/* style/resources-sv666-faq.css */
.page-resources-sv666-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#1a1a2e), so use light text */
  background-color: transparent; /* Main content background is handled by body or sections */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources-sv666-faq__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.page-resources-sv666-faq__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-sv666-faq__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-sv666-faq__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-resources-sv666-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-sv666-faq__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-sv666-faq__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-sv666-faq__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1a1a2e; /* Use body background color */
  color: #ffffff;
}

.page-resources-sv666-faq__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 3px solid #017439;
}

.page-resources-sv666-faq__text-block {
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for text blocks */
  padding: 25px;
  border-radius: 8px;
}

.page-resources-sv666-faq__text-block p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-sv666-faq__text-block strong {
  color: #ffffff;
}

.page-resources-sv666-faq__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-sv666-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block; /* Ensures max-width works correctly */
  margin: 0 auto; /* Center image */
}

.page-resources-sv666-faq__faq-list {
  margin-bottom: 60px;
}

.page-resources-sv666-faq__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Darker card background for contrast */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}