:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Black */
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --bg-color-light: #ffffff;
  --bg-color-dark: #1A1A1A;
  --card-bg-light: #fdfdfd;
  --border-color: #e0e0e0;
}

.page-resources-online-gambling-platform-selection-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default for light body background */
  background-color: var(--bg-color-light); /* Assuming body default is light */
}

.page-resources-online-gambling-platform-selection-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-online-gambling-platform-selection-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-color-light);
  min-height: 400px;
}

.page-resources-online-gambling-platform-selection-guide__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-online-gambling-platform-selection-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-resources-online-gambling-platform-selection-guide__intro-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-color-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-online-gambling-platform-selection-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color); /* Dark text on gold button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--primary-color);
}

.page-resources-online-gambling-platform-selection-guide__cta-button:hover {
  background: var(--text-color-light);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* General Content Section */
.page-resources-online-gambling-platform-selection-guide__content-section {
  padding: 80px 0;
}

.page-resources-online-gambling-platform-selection-guide__dark-bg {
  background-color: var(--secondary-color);
  color: var(--text-color-light);
}

.page-resources-online-gambling-platform-selection-guide__light-bg {
  background-color: var(--bg-color-light);
  color: var(--text-color-dark);
}

.page-resources-online-gambling-platform-selection-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: inherit; /* Inherit color from parent section */
  position: relative;
  padding-bottom: 15px;
}

.page-resources-online-gambling-platform-selection-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-online-gambling-platform-selection-guide__sub-section-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 25px;
  color: inherit;
}

.page-resources-online-gambling-platform-selection-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-resources-online-gambling-platform-selection-guide__image-wrapper {
  margin: 40px 0;
  text-align: center;
}