/* style/resources-online-betting-faq.css */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --register-login-font: #FFFF00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
  --background-light: #ffffff;
  --background-dark: #017439;
}

.page-resources-online-betting-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--background-light);
}

.page-resources-online-betting-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-online-betting-faq__hero-banner {
  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 fixed header */
  background-color: var(--background-dark);
  color: var(--text-light);
  overflow: hidden;
}

.page-resources-online-betting-faq__hero-image {
  width: 100%;
  max-width: 800px; /* Adjust max-width for image in hero */
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 8px;
  object-fit: cover;
}

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