.page-resources-efficient-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
}

.page-resources-efficient-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-efficient-betting-guide__hero-section {
  position: relative;
  padding: 100px 0 60px; /* Adjusted padding-top to avoid double offset */
  background-color: #017439;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px);
}

.page-resources-efficient-betting-guide__hero-section .page-resources-efficient-betting-guide__container {
  z-index: 1;
  position: relative;
}

.page-resources-efficient-betting-guide__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-resources-efficient-betting-guide__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-efficient-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-resources-efficient-betting-guide__btn-primary,
.page-resources-efficient-betting-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-efficient-betting-guide__btn-primary {
  background-color: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

.page-resources-efficient-betting-guide__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-resources-efficient-betting-guide__btn-secondary {
  background-color: #FFFFFF;
  color: #017439;
  border: 2px solid #017439;
}

.page-resources-efficient-betting-guide__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #017439;
}

.page-resources-efficient-betting-guide__btn-inline {
  margin-top: 20px;
}

.page-resources-efficient-betting-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-resources-efficient-betting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  display: block;
}

.page-resources-efficient-betting-guide__content-area {
  padding: 60px 0;
  background-color: #FFFFFF;
  color: #333333;
}

.page-resources-efficient-betting-guide__section-title {
  font-size: 2em;
  color: #017439;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-resources-efficient-betting-guide__paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
  text-align: justify;
}

.page-resources-efficient-betting-guide__keyword {
  color: #017439;
  font-weight: bold;
}

.page-resources-efficient-betting-guide__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-efficient-betting-guide__faq-list {
  margin-top: 40px;
}

.page-resources-efficient-betting-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-efficient-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #eafaea;
  transition: background-color 0.3s ease;
}

.page-resources-efficient-betting-guide__faq-question:hover {
  background-color: #dcf2dc;
}

.page-resources-efficient-betting-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
  color: #017439;
}

.page-resources-efficient-betting-guide__faq-item.active .page-resources-efficient-betting-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-efficient-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
  background-color: #ffffff;
}

.page-resources-efficient-betting-guide__faq-item.active .page-resources-efficient-betting-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 25px;
}

.page-resources-efficient-betting-guide__faq-answer p {
  margin-bottom: 0;
}

.page-resources-efficient-betting-guide__faq-answer a {
  color: #017439;
  text-decoration: underline;
}

.page-resources-efficient-betting-guide__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 20px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-efficient-betting-guide__main-title {
    font-size: 2.2em;
  }
  .page-resources-efficient-betting-guide__intro-text {
    font-size: 1em;
  }
  .page-resources-efficient-betting-guide__section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-efficient-betting-guide__hero-section {
    padding: 80px 0 40px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-efficient-betting-guide__main-title {
    font-size: 1.8em;
  }
  .page-resources-efficient-betting-guide__intro-text {
    font-size: 0.9em;
  }
  .page-resources-efficient-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-efficient-betting-guide__btn-primary,
  .page-resources-efficient-betting-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-efficient-betting-guide__content-area {
    padding: 40px 0;
  }
  .page-resources-efficient-betting-guide__container {
    padding: 0 15px;
  }
  .page-resources-efficient-betting-guide__section-title {
    font-size: 1.5em;
  }
  .page-resources-efficient-betting-guide__paragraph {
    font-size: 1em;
  }
  .page-resources-efficient-betting-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-efficient-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-efficient-betting-guide__section,
  .page-resources-efficient-betting-guide__card,
  .page-resources-efficient-betting-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-efficient-betting-guide__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-efficient-betting-guide video,
  .page-resources-efficient-betting-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-efficient-betting-guide__video-section,
  .page-resources-efficient-betting-guide__video-container,
  .page-resources-efficient-betting-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-efficient-betting-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-efficient-betting-guide__cta-button,
  .page-resources-efficient-betting-guide__btn-primary,
  .page-resources-efficient-betting-guide__btn-secondary,
  .page-resources-efficient-betting-guide a[class*="button"],
  .page-resources-efficient-betting-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-efficient-betting-guide__cta-buttons,
  .page-resources-efficient-betting-guide__button-group,
  .page-resources-efficient-betting-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-resources-efficient-betting-guide__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}