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

.page-resources-69win-faq__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-69win-faq__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-resources-69win-faq__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffc107; /* Gold for emphasis */
  line-height: 1.2;
}

.page-resources-69win-faq__hero-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

.page-resources-69win-faq__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Gold */
  color: #0056b3; /* Darker blue for contrast */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #ffc107;
}

.page-resources-69win-faq__cta-button:hover {
  background-color: #e0a800;
  color: #003e80;
}

.page-resources-69win-faq__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-resources-69win-faq__bg-accent {
  background-color: #eaf5ff; /* Lighter blue for subtle contrast */
}

.page-resources-69win-faq__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-69win-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-resources-69win-faq__faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-resources-69win-faq__question {
  font-size: 1.3em;
  color: #007bff;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-resources-69win-faq__question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
}

.page-resources-69win-faq__question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-resources-69win-faq__question:hover {
  background-color: #f0f8ff;
}

.page-resources-69win-faq__answer {
  padding: 0 25px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-resources-69win-faq__answer.active {
  max-height: 500px; /* Adjust based on expected content length */
  padding: 20px 25px;
}

.page-resources-69win-faq__answer p, .page-resources-69win-faq__answer ul, .page-resources-69win-faq__answer ol {
  margin-bottom: 15px;
  color: #555;
}

.page-resources-69win-faq__answer ul, .page-resources-69win-faq__answer ol {
  padding-left: 20px;
}

.page-resources-69win-faq__answer li {
  margin-bottom: 8px;
}

.page-resources-69win-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-69win-faq__action-button {
  display: inline-block;
  background-color: #007bff; /* Primary blue */
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-resources-69win-faq__action-button:hover {
  background-color: #0056b3;
}

.page-resources-69win-faq__final-cta-section {
  background-color: #007bff; /* Primary blue */
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.page-resources-69win-faq__final-cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffc107;
}

.page-resources-69win-faq__final-cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

.page-resources-69win-faq__cta-button--inverted {
  background-color: #ffc107;
  color: #0056b3;
  border: 2px solid #ffc107;
}

.page-resources-69win-faq__cta-button--inverted:hover {
  background-color: #e0a800;
  color: #003e80;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-69win-faq__hero-title {
    font-size: 2.2em;
  }

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

  .page-resources-69win-faq__question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-69win-faq__answer {
    padding: 15px 20px;
  }

  .page-resources-69win-faq__final-cta-title {
    font-size: 2em;
  }

  .page-resources-69win-faq__hero-section, .page-resources-69win-faq__content-section, .page-resources-69win-faq__final-cta-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-resources-69win-faq__hero-title {
    font-size: 1.8em;
  }

  .page-resources-69win-faq__hero-description {
    font-size: 1em;
  }

  .page-resources-69win-faq__section-title {
    font-size: 1.6em;
  }

  .page-resources-69win-faq__cta-button, .page-resources-69win-faq__action-button {
    padding: 10px 20px;
    font-size: 0.95em;
  }

  .page-resources-69win-faq__question {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-resources-69win-faq__answer {
    padding: 12px 15px;
  }

  .page-resources-69win-faq__final-cta-title {
    font-size: 1.8em;
  }
}