:root {
  --primary-color: #E44D26; /* Orange-red */
  --secondary-color: #333333; /* Dark grey */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-light: #f4f4f4; /* From shared.css body background */
  --border-color: #e0e0e0;
  --light-grey-bg: #f9f9f9;
}

.page-resources-online-betting-safety {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--bg-light);
  padding-top: var(--header-offset, 120px);
}

.page-resources-online-betting-safety__hero-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-color-light);
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-resources-online-betting-safety__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-online-betting-safety__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-online-betting-safety__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-resources-online-betting-safety__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--text-color-light);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-resources-online-betting-safety__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-online-betting-safety__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-online-betting-safety__cta-button:hover {
  background: #c23b1c; /* Darken primary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-online-betting-safety__section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-resources-online-betting-safety__section:nth-of-type(even) {
  background-color: var(--light-grey-bg);
}

.page-resources-online-betting-safety__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-online-betting-safety__heading {
  font-size: 2em;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-online-betting-safety__heading::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-betting-safety__sub-heading {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.page-resources-online-betting-safety__paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: var(--text-color-dark);
}

.page-resources-online-betting-safety__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

.page-resources-online-betting-safety__ordered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

.page-resources-online-betting-safety__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-online-betting-safety__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-resources-online-betting-safety__link:hover {
  text-decoration: underline;
}

.page-resources-online-betting-safety__image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-online-betting-safety__content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-online-betting-safety__btn-primary {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: none;
}

.page-resources-online-betting-safety__btn-primary:hover {
  background: #c23b1c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-online-betting-safety__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.page-resources-online-betting-safety__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);}