.page-resources-responsible-gaming-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f8f8f8; /* Light background for content */
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

.page-resources-responsible-gaming-guide__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A192F;
  color: #ffffff;
  padding: 80px 20px 40px;
  text-align: center;
}

.page-resources-responsible-gaming-guide__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.page-resources-responsible-gaming-guide__hero-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-resources-responsible-gaming-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-resources-responsible-gaming-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-responsible-gaming-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-responsible-gaming-guide__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-responsible-gaming-guide__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-resources-responsible-gaming-guide__button--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-resources-responsible-gaming-guide__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-responsible-gaming-guide__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-responsible-gaming-guide__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-resources-responsible-gaming-guide__content-area {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-resources-responsible-gaming-guide__article {
  padding: 20px;
}

.page-resources-responsible-gaming-guide__section-title {
  font-size: 2em;
  color: #0A192F;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-responsible-gaming-guide__subsection-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-responsible-gaming-guide__paragraph {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #444444;
}

.page-resources-responsible-gaming-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-responsible-gaming-guide__list-item {
  margin-bottom: 10px;
  color: #444444;
}

.page-resources-responsible-gaming-guide__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-responsible-gaming-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-resources-responsible-gaming-guide__action-center {
  text-align: center;
  margin: 40px 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-responsible-gaming-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
}

.page-resources-responsible-gaming-guide__faq-question {
  font-size: 1.2em;
  color: #0A192F;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-responsible-gaming-guide__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-resources-responsible-gaming-guide__conclusion-section {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px dashed #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-responsible-gaming-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-responsible-gaming-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-responsible-gaming-guide__section-title {
    font-size: 1.6em;
  }

  .page-resources-responsible-gaming-guide__subsection-title {
    font-size: 1.3em;
  }

  .page-resources-responsible-gaming-guide__paragraph,
  .page-resources-responsible-gaming-guide__list-item,
  .page-resources-responsible-gaming-guide__faq-answer {
    font-size: 0.95em;
  }

  .page-resources-responsible-gaming-guide__hero-actions,
  .page-resources-responsible-gaming-guide__action-center {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-responsible-gaming-guide__button {
    width: 80%;
  }

  .page-resources-responsible-gaming-guide__content-area {
    margin: 20px auto;
    padding: 10px;
  }

  .page-resources-responsible-gaming-guide__article {
    padding: 10px;
  }

  .page-resources-responsible-gaming-guide__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size on mobile too */
    min-height: 200px; /* Ensure min size on mobile too */
  }
}

@media (max-width: 480px) {
  .page-resources-responsible-gaming-guide__hero-title {
    font-size: 1.8em;
  }

  .page-resources-responsible-gaming-guide__hero-description {
    font-size: 0.9em;
  }

  .page-resources-responsible-gaming-guide__button {
    width: 90%;
    padding: 10px 20px;
  }
}