.page-resources-sports-betting-tips {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-resources-sports-betting-tips__hero-section {
  background-color: #0A192F;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-sports-betting-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3; /* Subtle background effect */
}

.page-resources-sports-betting-tips__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-resources-sports-betting-tips__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-sports-betting-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-resources-sports-betting-tips__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-sports-betting-tips__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-sports-betting-tips__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-resources-sports-betting-tips__button--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-resources-sports-betting-tips__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-sports-betting-tips__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-sports-betting-tips__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-resources-sports-betting-tips__button--tertiary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #0A192F;
}

.page-resources-sports-betting-tips__button--tertiary:hover {
  background-color: #1a2c42;
  border-color: #1a2c42;
}

.page-resources-sports-betting-tips__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff; /* White background for content readability */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-resources-sports-betting-tips__section-title {
  font-size: 2.2em;
  color: #0A192F;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-sports-betting-tips__sub-title {
  font-size: 1.7em;
  color: #0A192F;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-sports-betting-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-sports-betting-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-sports-betting-tips__list-item {
  margin-bottom: 10px;
}

.page-resources-sports-betting-tips__image-container {
  margin: 40px 0;
  text-align: center;
}

.page-resources-sports-betting-tips__image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-sports-betting-tips__faq-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-resources-sports-betting-tips__faq-question {
  font-size: 1.3em;
  color: #0A192F;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-sports-betting-tips__faq-answer {
  font-size: 1.0em;
  color: #555555;
}

.page-resources-sports-betting-tips__faq-answer a {
  color: #0A192F;
  text-decoration: underline;
}

.page-resources-sports-betting-tips__faq-answer a:hover {
  color: #FFD700;
}

.page-resources-sports-betting-tips__call-to-action {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-resources-sports-betting-tips__return-link {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-sports-betting-tips__hero-title {
    font-size: 2.8em;
  }
  .page-resources-sports-betting-tips__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-sports-betting-tips__hero-section {
    padding: 60px 15px;
  }
  .page-resources-sports-betting-tips__hero-title {
    font-size: 2.2em;
  }
  .page-resources-sports-betting-tips__hero-description {
    font-size: 1em;
  }
  .page-resources-sports-betting-tips__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-sports-betting-tips__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-sports-betting-tips__content-area {
    padding: 30px 15px;
  }
  .page-resources-sports-betting-tips__section-title {
    font-size: 1.8em;
  }
  .page-resources-sports-betting-tips__sub-title {
    font-size: 1.4em;
  }
  .page-resources-sports-betting-tips__paragraph,
  .page-resources-sports-betting-tips__list,
  .page-resources-sports-betting-tips__faq-question,
  .page-resources-sports-betting-tips__faq-answer {
    font-size: 0.95em;
  }
  .page-resources-sports-betting-tips__image-container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-sports-betting-tips__hero-title {
    font-size: 1.8em;
  }
  .page-resources-sports-betting-tips__hero-description {
    font-size: 0.9em;
  }
  .page-resources-sports-betting-tips__section-title {
    font-size: 1.5em;
  }
  .page-resources-sports-betting-tips__sub-title {
    font-size: 1.2em;
  }
}