/* style/resources-how-to-choose-best-betting-platform.css */

/* Base styles for the page content */
.page-resources-how-to-choose-best-betting-platform {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background from shared.css */
}

.page-resources-how-to-choose-best-betting-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-how-to-choose-best-betting-platform__section-title {
  font-size: 2.5em;
  color: #ffffff; /* White for dark sections */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-how-to-choose-best-betting-platform__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439; /* Brand color accent */
  border-radius: 2px;
}

.page-resources-how-to-choose-best-betting-platform__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for better readability */
}

/* Hero Section */
.page-resources-how-to-choose-best-betting-platform__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background-color: #0a0a0a; /* Dark background */
  overflow: hidden;
}

.page-resources-how-to-choose-best-betting-platform__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-resources-how-to-choose-best-betting-platform__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
}

.page-resources-how-to-choose-best-betting-platform__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-resources-how-to-choose-best-betting-platform__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Yellow for prominence */
  line-height: 1.2;
}

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