.page-blog-online-betting-guide {
  font-family: Arial, sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  line-height: 1.6;
  padding-bottom: 40px;
}

/* Hero Section */
.page-blog-online-betting-guide__hero-section {
  display: flex;
  flex-direction: column; /* Default to column for image then text */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  position: relative;
  overflow: hidden;
}

.page-blog-online-betting-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-online-betting-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover; /* Desktop: cover to fill space */
  display: block;
}

.page-blog-online-betting-guide__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
}

.page-blog-online-betting-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-online-betting-guide__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-blog-online-betting-guide__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap */
}

/* General Container & Text */
.page-blog-online-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-online-betting-guide__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFB04D; /* Glow */
}

.page-blog-online-betting-guide__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-blog-online-betting-guide__highlight {
  color: #FFA53A; /* Auxiliary color */
  font-weight: bold;
}

/* Buttons */
.page-blog-online-betting-guide__btn-primary,
.page-blog-online-betting-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
}

.page-blog-online-betting-guide__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #FFF3E6; /* Text Main */
  border: none;
}

.page-blog-online-betting-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-online-betting-guide__btn-secondary {
  background-color: transparent;
  color: #FFA53A; /* Auxiliary color */
  border: 2px solid #FFA53A; /* Auxiliary color */
}

.page-blog-online-betting-guide__btn-secondary:hover {
  background-color: #FFA53A;
  color: #0D0E12; /* Background */
}

/* Section specific styles */
.page-blog-online-betting-guide__introduction-section {
  background-color: #0D0E12; /* Background */
}

.page-blog-online-betting-guide__factors-section {
  background-color: #17191F; /* Card BG */
  padding: 60px 20px;
}

.page-blog-online-betting-guide__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-online-betting-guide__card {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #FFF3E6;
}

.page-blog-online-betting-guide__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Min size */
  min-height: 200px; /* Min size */
}

.page-blog-online-betting-guide__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
}

.page-blog-online-betting-guide__card-description {
  font-size: 0.95rem;
  color: #FFF3E6;
  flex-grow: 1; /* Allow description to take available space */
}

/* Content with image and text */
.page-blog-online-betting-guide__account-protection-section,
.page-blog-online-betting-guide__transactions-section,
.page-blog-online-betting-guide__responsible-gaming-section,
.page-blog-online-betting-guide__customer-support-section {
  padding: 60px 20px;
}

.page-blog-online-betting-guide__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-blog-online-betting-guide__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-blog-online-betting-guide__image-block {
  flex: 1;
  min-width: 300px; /* Ensure image block doesn't get too small */
}

.page-blog-online-betting-guide__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  min-width: 200px; /* Min size */
  min-height: 200px; /* Min size */
}

.page-blog-online-betting-guide__text-block {
  flex: 2;
  min-width: 300px;
  color: #FFF3E6;
}

.page-blog-online-betting-guide__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-blog-online-betting-guide__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #FFF3E6;
}