.page-resources-how-to-choose-reliable-betting-platform {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF;
}

.page-resources-how-to-choose-reliable-betting-platform__section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-how-to-choose-reliable-betting-platform__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  background-color: #017439; /* Brand primary color */
}

.page-resources-how-to-choose-reliable-betting-platform__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Overlay for text readability */
}

.page-resources-how-to-choose-reliable-betting-platform__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 8px;
}

.page-resources-how-to-choose-reliable-betting-platform__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-resources-how-to-choose-reliable-betting-platform__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-how-to-choose-reliable-betting-platform__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom font color for register/login */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #C30808;
}

.page-resources-how-to-choose-reliable-betting-platform__btn-primary:hover {
  background-color: #e02f2f;
  color: #ffffff;
  border-color: #e02f2f;
}

.page-resources-how-to-choose-reliable-betting-platform__content-area,
.page-resources-how-to-choose-reliable-betting-platform__faq-section,
.page-resources-how-to-choose-reliable-betting-platform__video-section {
  padding: 60px 0;
}

.page-resources-how-to-choose-reliable-betting-platform__section-title {
  font-size: 2.2em;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-how-to-choose-reliable-betting-platform__section-title--white {
  color: #ffffff;
}

.page-resources-how-to-choose-reliable-betting-platform__sub-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-how-to-choose-reliable-betting-platform p {
  margin-bottom: 1em;
  color: #333333;
}

.page-resources-how-to-choose-reliable-betting-platform__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 1em;
  color: #333333;
}

.page-resources-how-to-choose-reliable-betting-platform__list li {
  margin-bottom: 0.5em;
}

.page-resources-how-to-choose-reliable-betting-platform__image-text-block {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 30px;
}

.page-resources-how-to-choose-reliable-betting-platform__image-left,
.page-resources-how-to-choose-reliable-betting-platform__image-right {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-resources-how-to-choose-reliable-betting-platform__text-left,
.page-resources-how-to-choose-reliable-betting-platform__text-right {
  flex: 2;
}

.page-resources-how-to-choose-reliable-betting-platform__full-width-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 40px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-resources-how-to-choose-reliable-betting-platform__cta-banner {
  background-color: #017439;
  color: #ffffff;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  margin-top: 50px;
}

.page-resources-how-to-choose-reliable-betting-platform__cta-text {
  font-size: 1.5em;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-resources-how-to-choose-reliable-betting-platform__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-how-to-choose-reliable-betting-platform__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-how-to-choose-reliable-betting-platform__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-choose-reliable-betting-platform__faq-question:hover {
  background-color: #e6e6e6;
}

.page-resources-how-to-choose-reliable-betting-platform__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-choose-reliable-betting-platform__faq-item.active .page-resources-how-to-choose-reliable-betting-platform__faq-toggle {
  transform: rotate(45deg); /* Change + to X or similar visually */
}

.page-resources-how-to-choose-reliable-betting-platform__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #333333;
}

.page-resources-how-to-choose-reliable-betting-platform__faq-item.active .page-resources-how-to-choose-reliable-betting-platform__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

/* Video Section */
.page-resources-how-to-choose-reliable-betting-platform__video-section {
  background-color: #017439;
  color: #ffffff;
  text-align: center;
}

.page-resources-how-to-choose-reliable-betting-platform__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.page-resources-how-to-choose-reliable-betting-platform__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-resources-how-to-choose-reliable-betting-platform__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-resources-how-to-choose-reliable-betting-platform__video-description {
  margin-top: 20px;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-choose-reliable-betting-platform__hero-title {
    font-size: 2.2em;
  }

  .page-resources-how-to-choose-reliable-betting-platform__section-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-choose-reliable-betting-platform__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-choose-reliable-betting-platform {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-how-to-choose-reliable-betting-platform__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-how-to-choose-reliable-betting-platform__hero-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-choose-reliable-betting-platform__hero-description {
    font-size: 1em;
  }

  .page-resources-how-to-choose-reliable-betting-platform__btn-primary {
    padding: 12px 25px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-how-to-choose-reliable-betting-platform__section-wrapper {
    padding: 0 15px;
  }

  .page-resources-how-to-choose-reliable-betting-platform__image-text-block {
    flex-direction: column;
    gap: 20px;
  }

  .page-resources-how-to-choose-reliable-betting-platform__image-left,
  .page-resources-how-to-choose-reliable-betting-platform__image-right,
  .page-resources-how-to-choose-reliable-betting-platform__full-width-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-resources-how-to-choose-reliable-betting-platform__text-left,
  .page-resources-how-to-choose-reliable-betting-platform__text-right {
    flex: none;
    width: 100%;
  }

  .page-resources-how-to-choose-reliable-betting-platform__cta-banner {
    padding: 30px 20px;
  }

  .page-resources-how-to-choose-reliable-betting-platform__cta-text {
    font-size: 1.2em;
  }

  .page-resources-how-to-choose-reliable-betting-platform__video-wrapper {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-how-to-choose-reliable-betting-platform__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-how-to-choose-reliable-betting-platform__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure video section is not hidden by header on mobile */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
}