:root {
  --primary-color: #017439; /* Green */
  --secondary-color: #FFFFFF; /* White */
  --register-login-bg: #C30808; /* Red for register/login buttons */
  --register-login-text: #FFFF00; /* Yellow for register/login button text */
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-light: #e0e0e0;
}

/* Base styles for the page content */
.page-resources-safe-betting-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--secondary-color); /* Matches body background for consistency */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

/* Hero Section */
.page-resources-safe-betting-tips__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color), #005f2c); /* Darker green gradient for visual appeal */
  overflow: hidden;
}

.page-resources-safe-betting-tips__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources-safe-betting-tips__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.2);
}

.page-resources-safe-betting-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-resources-safe-betting-tips__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-resources-safe-betting-tips__intro-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Sections */
.page-resources-safe-betting-tips__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-light);
}

.page-resources-safe-betting-tips__section:last-of-type {
  border-bottom: none;
}

.page-resources-safe-betting-tips__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-safe-betting-tips__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-safe-betting-tips__sub-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

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

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

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

.page-resources-safe-betting-tips__list-item strong {
  color: var(--primary-color);
}

.page-resources-safe-betting-tips__link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-resources-safe-betting-tips__link:hover {
  color: #005f2c; /* Darker green on hover */
}

/* Image with text layout */
.page-resources-safe-betting-tips__image-text-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-resources-safe-betting-tips__image-text-layout--reverse {
  flex-direction: row-reverse;
}

.page-resources-safe-betting-tips__image {
  flex: 0 0 400px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-resources-safe-betting-tips__text-content {
  flex: 1;
}

/* CTA Buttons */
.page-resources-safe-betting-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-resources-safe-betting-tips__cta-buttons--center {
  text-align: center;
}

.page-resources-safe-betting-tips__btn-primary,
.page-resources-safe-betting-tips__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}