.page-blog-online-betting-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-online-betting-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top, only small decorative top padding here */
  overflow: hidden;
}

.page-blog-online-betting-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-online-betting-strategy__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-online-betting-strategy__hero-content {
  position: relative;
  z-index: 10;
  padding: 20px;
  max-width: 900px;
  margin-top: -150px; /* Adjust to place content below image, but visually integrated */
  background: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-online-betting-strategy__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-online-betting-strategy__subtitle {
  font-size: clamp(1em, 2vw, 1.2em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-online-betting-strategy__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-online-betting-strategy__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-online-betting-strategy__content-section {
  padding: 60px 0;
}

.page-blog-online-betting-strategy__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-online-betting-strategy__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-blog-online-betting-strategy__sub-title {
  font-size: clamp(1.4em, 3vw, 1.8em);
  color: #22C768; /* Auxiliary color */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-online-betting-strategy__text {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-blog-online-betting-strategy__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-online-betting-strategy__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-blog-online-betting-strategy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-blog-online-betting-strategy__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-online-betting-strategy__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-blog-online-betting-strategy__cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-blog-online-betting-strategy__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
}

.page-blog-online-betting-strategy__cta-button--secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* Button color light part */
  border: 2px solid #2AD16F;
}

.page-blog-online-betting-strategy__cta-button--secondary:hover {
  background: #2AD16F;
  color: #ffffff;
}

.page-blog-online-betting-strategy__faq-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-blog-online-betting-strategy__faq-list {
  margin-top: 40px;
}

.page-blog-online-betting-strategy__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-online-betting-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  position: relative;
}

.page-blog-online-betting-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-online-betting-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F;
  transition: transform 0.3s ease;
}

.page-blog-online-betting-strategy__faq-item[open] .page-blog-online-betting-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-online-betting-strategy__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-online-betting-strategy__hero-content {
    margin-top: -80px; /* Adjust for smaller screens */
  }

  .page-blog-online-betting-strategy__main-title {
    font-size: 2em;
  }

  .page-blog-online-betting-strategy__subtitle {
    font-size: 1em;
  }

  .page-blog-online-betting-strategy__section-title {
    font-size: 1.8em;
  }

  .page-blog-online-betting-strategy__sub-title {
    font-size: 1.3em;
  }

  .page-blog-online-betting-strategy__text,
  .page-blog-online-betting-strategy__list-item,
  .page-blog-online-betting-strategy__faq-answer {
    font-size: 0.95em;
  }

  .page-blog-online-betting-strategy__cta-button,
  .page-blog-online-betting-strategy__cta-button--primary,
  .page-blog-online-betting-strategy__cta-button--secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
  }

  .page-blog-online-betting-strategy__cta-wrapper {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-online-betting-strategy img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-online-betting-strategy__container,
  .page-blog-online-betting-strategy__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-online-betting-strategy__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-online-betting-strategy__content-section,
  .page-blog-online-betting-strategy__faq-section {
    padding: 40px 0;
  }
}