/* style/beginner-guide-safe-responsible-gambling.css */

/* Base styles for the page content */
.page-beginner-guide-safe-responsible-gambling {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherit from shared.css, assuming it's dark */
}

.page-beginner-guide-safe-responsible-gambling__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-beginner-guide-safe-responsible-gambling__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 600px;
  padding-top: var(--header-offset, 120px);
  background-color: #017439; /* Brand primary color for hero background */
  color: #ffffff;
  overflow: hidden;
}

.page-beginner-guide-safe-responsible-gambling__hero-content {
  flex: 1;
  padding: 40px;
  z-index: 1;
  max-width: 60%;
}

.page-beginner-guide-safe-responsible-gambling__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-safe-responsible-gambling__intro-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-beginner-guide-safe-responsible-gambling__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
}

.page-beginner-guide-safe-responsible-gambling__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
.page-beginner-guide-safe-responsible-gambling__section {
  padding: 60px 0;
}

.page-beginner-guide-safe-responsible-gambling__section--dark {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

.page-beginner-guide-safe-responsible-gambling__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff; /* For dark sections */
}
.page-beginner-guide-safe-responsible-gambling__section:not(.page-beginner-guide-safe-responsible-gambling__section--dark) .page-beginner-guide-safe-responsible-gambling__section-title {
  color: #017439; /* For light sections */
}

.page-beginner-guide-safe-responsible-gambling__text-block {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #f0f0f0; /* For dark sections */
}
.page-beginner-guide-safe-responsible-gambling__section:not(.page-beginner-guide-safe-responsible-gambling__section--dark) .page-beginner-guide-safe-responsible-gambling__text-block {
  color: #333333; /* For light sections */
}


/* Card Grid for Section I */
.page-beginner-guide-safe-responsible-gambling__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide-safe-responsible-gambling__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff; /* Light text for dark card background */
}

.page-beginner-guide-safe-responsible-gambling__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-safe-responsible-gambling__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-beginner-guide-safe-responsible-gambling__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-beginner-guide-safe-responsible-gambling__card p {
  font-size: 1em;
  color: #f0f0f0;
}

/* Feature List for Section II */
.page-beginner-guide-safe-responsible-gambling__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-beginner-guide-safe-responsible-gambling__feature-item {
  background-color: #ffffff; /* Light background for features in a light section */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333; /* Dark text for light background */
}

.page-beginner-guide-safe-responsible-gambling__feature-icon {
  width: 200px;
  height: 150px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.page-beginner-guide-safe-responsible-gambling__feature-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #017439; /* Brand color for titles */
}

.page-beginner-guide-safe-responsible-gambling__feature-item p {
  font-size: 0.95em;
  color: #555555;
}

/* Tips Grid for Section III */
.page-beginner-guide-safe-responsible-gambling__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide-safe-responsible-gambling__tip-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #ffffff; /* Highlight with white */
  padding: 25px;
  border-radius: 8px;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-safe-responsible-gambling__tip-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-beginner-guide-safe-responsible-gambling__tip-item p {
  font-size: 0.95em;
  color: #f0f0f0;
}

/* Resource Grid for Section IV */
.page-beginner-guide-safe-responsible-gambling__resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide-safe-responsible-gambling__resource-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-beginner-guide-safe-responsible-gambling__resource-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #017439;
}

.page-beginner-guide-safe-responsible-gambling__resource-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 15px;
}

.page-beginner-guide-safe-responsible-gambling__resource-list li {
  margin-bottom: 8px;
}

.page-beginner-guide-safe-responsible-gambling__resource-list a {
  color: #017439;
  text-decoration: none;
  font-weight: bold;
}

.page-beginner-guide-safe-responsible-gambling__resource-list a:hover {
  text-decoration: underline;
}

/* Responsibility List for Section V */
.page-beginner-guide-safe-responsible-gambling__responsibility-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-beginner-guide-safe-responsible-gambling__responsibility-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-beginner-guide-safe-responsible-gambling__responsibility-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #ffffff;
}

/* FAQ Section */
.page-beginner-guide-safe-responsible-gambling__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
}