/* style/resources-high-win-rate-strategy.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #E34234;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #0f0f0f;
  --bg-light-card: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
}

.page-resources-high-win-rate-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--bg-dark);
  padding-top: 120px; /* Adjust for fixed header */
}

.page-resources-high-win-rate-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-high-win-rate-strategy__hero-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a7a 100%);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-high-win-rate-strategy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-high-win-rate-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.page-resources-high-win-rate-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-high-win-rate-strategy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-high-win-rate-strategy__btn-primary {
  background: var(--secondary-color);
  color: var(--text-light);
}

.page-resources-high-win-rate-strategy__btn-primary:hover {
  background: #c7372d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.page-resources-high-win-rate-strategy__btn-secondary {
  background: var(--text-light);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-high-win-rate-strategy__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.page-resources-high-win-rate-strategy__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.page-resources-high-win-rate-strategy__section:last-of-type {
  border-bottom: none;
}

.page-resources-high-win-rate-strategy__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-resources-high-win-rate-strategy__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-resources-high-win-rate-strategy__content-area p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-light);
}

.page-resources-high-win-rate-strategy__content-area strong {
  color: var(--secondary-color);
}

.page-resources-high-win-rate-strategy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-resources-high-win-rate-strategy__faq-section {
  background-color: #1a1a1a; /* Slightly lighter dark background for FAQ */
  padding: 60px 0;
}

.page-resources-high-win-rate-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-light-card); /* Use a subtle dark card background */
  border: 1px solid var(--border-color);
}

.page-resources-high-win-rate-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08); /* Slightly lighter background for question */
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-high-win-rate-strategy__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-resources-high-win-rate-strategy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light);
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-resources-high-win-rate-strategy__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.page-resources-high-win-rate-strategy__faq-item.active .page-resources-high-win-rate-strategy__faq-toggle {
  color: var(--text-light);
  transform: rotate(45deg); /* Rotate for minus effect */
  background: var(--secondary-color);
}

.page-resources-high-win-rate-strategy__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: var(--text-light);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 8px 8px;
}

.page-resources-high-win-rate-strategy__faq-item.active .page-resources-high-win-rate-strategy__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to accommodate any content */
  padding: 20px 25px !important;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-high-win-rate-strategy__main-title {
    font-size: 2.8em;
  }
  .page-resources-high-win-rate-strategy__section-title {
    font-size: 2.2em;
  }
  .page-resources-high-win-rate-strategy__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-high-win-rate-strategy {
    padding-top: 100px !important; /* Adjust for mobile fixed header */
    font-size: 15px;
  }

  .page-resources-high-win-rate-strategy__container {
    padding: 0 15px;
  }

  .page-resources-high-win-rate-strategy__hero-section {
    padding: 60px 0;
  }

  .page-resources-high-win-rate-strategy__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-resources-high-win-rate-strategy__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources-high-win-rate-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-high-win-rate-strategy__cta-button {
    padding: 12px 25px !important;
    font-size: 1em !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-high-win-rate-strategy__section {
    padding: 40px 0;
  }

  .page-resources-high-win-rate-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-high-win-rate-strategy__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-resources-high-win-rate-strategy__content-area p {
    font-size: 1em;
  }

  .page-resources-high-win-rate-strategy__image {
    margin: 20px auto;
    border-radius: 4px;
  }

  .page-resources-high-win-rate-strategy__faq-question {
    padding: 15px 20px;
  }

  .page-resources-high-win-rate-strategy__faq-question h3 {
    font-size: 1em;
  }

  .page-resources-high-win-rate-strategy__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-resources-high-win-rate-strategy__faq-answer {
    padding: 0 20px;
  }

  .page-resources-high-win-rate-strategy__faq-item.active .page-resources-high-win-rate-strategy__faq-answer {
    padding: 15px 20px !important;
  }
}

@media (max-width: 480px) {
  .page-resources-high-win-rate-strategy__main-title {
    font-size: 1.8em;
  }
  .page-resources-high-win-rate-strategy__section-title {
    font-size: 1.6em;
  }
}