:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A2B3C; /* Dark Blue */
  --text-on-dark: #FFFFFF; /* White for text on dark backgrounds */
  --text-on-light: #1A2B3C; /* Dark Blue for text on light backgrounds */
  --accent-color-light: #FFFACD; /* Light Gold for subtle accents */
  --accent-color-dark: #B8860B; /* Darker Gold for hover states */
}

.page-resources-responsible-gambling-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-on-light);
  background-color: #f8f8f8;
}

.page-resources-responsible-gambling-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0c1a29 100%);
  overflow: hidden;
}

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

.page-resources-responsible-gambling-guide__hero-image {
  width: 100%;
  max-width: 1000px; /* Adjust max-width as needed */
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-responsible-gambling-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-on-dark);
}

.page-resources-responsible-gambling-guide__hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-resources-responsible-gambling-guide__hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #E0E0E0;
}

.page-resources-responsible-gambling-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.page-resources-responsible-gambling-guide__cta-button:hover {
  background: var(--accent-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-responsible-gambling-guide__section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-responsible-gambling-guide__section:nth-of-type(even) {
  background-color: var(--accent-color-light);
}

.page-resources-responsible-gambling-guide__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-responsible-gambling-guide__section h2 {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-responsible-gambling-guide__section h2::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-responsible-gambling-guide__section h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-resources-responsible-gambling-guide__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-on-light);
}

.page-resources-responsible-gambling-guide__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-responsible-gambling-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-responsible-gambling-guide__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-responsible-gambling-guide__card {
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: var(--text-on-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-responsible-gambling-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-responsible-gambling-guide__card h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-resources-responsible-gambling-guide__card ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-resources-responsible-gambling-guide__card li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-resources-responsible-gambling-guide__bullet-list, .page-resources-responsible-gambling-guide__support-list, .page-resources-responsible-gambling-guide__commitment-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  padding-left: 0;
}

.page-resources-responsible-gambling-guide__bullet-list li, .page-resources-responsible-gambling-guide__support-list li, .page-resources-responsible-gambling-guide__commitment-list li {
  margin-bottom: 12px;
  font-size: 1.1em;
  color: var(--text-on-light);
}

.page-resources-responsible-gambling-guide__section:nth-of-type(even) .page-resources-responsible-gambling-guide__bullet-list li, 
.page-resources-responsible-gambling-guide__section:nth-of-type(even) .page-resources-responsible-gambling-guide__support-list li, 
.page-resources-responsible-gambling-guide__section:nth-of-type(even) .page-resources-responsible-gambling-guide__commitment-list li {
  color: var(--text-on-light);
}

.page-resources-responsible-gambling-guide__faq .page-resources-responsible-gambling-guide__accordion {
  margin-top: 40px;
}

.page-resources-responsible-gambling-guide__accordion-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-responsible-gambling-guide__accordion-header {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-resources-responsible-gambling-guide__accordion-header:hover {
  background-color: var(--accent-color-dark);
}

.page-resources-responsible-gambling-guide__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-resources-responsible-gambling-guide__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-responsible-gambling-guide__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #ffffff;
}

.page-resources-responsible-gambling-guide__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: var(--text-on-light);
}

.page-resources-responsible-gambling-guide__cta-button--large {
  font-size: 1.3em;
  padding: 18px 50px;
  margin-top: 40px;
}

.page-resources-responsible-gambling-guide__floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.page-resources-responsible-gambling-guide__floating-button:hover {
  background-color: var(--accent-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-responsible-gambling-guide__floating-button-text {
  white-space: nowrap;
}

.page-resources-responsible-gambling-guide__copyright {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--secondary-color);
  color: var(--text-on-dark);
  font-size: 0.9em;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-responsible-gambling-guide__hero-content h1 {
    font-size: 2.8em;
  }
  .page-resources-responsible-gambling-guide__section h2 {
    font-size: 2.2em;
  }
  .page-resources-responsible-gambling-guide__section h3 {
    font-size: 1.6em;
  }
  .page-resources-responsible-gambling-guide__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-resources-responsible-gambling-guide__hero-section {
    padding: 40px 15px;
  }
  .page-resources-responsible-gambling-guide__hero-image {
    margin-bottom: 30px;
  }
  .page-resources-responsible-gambling-guide__hero-content h1 {
    font-size: 2.2em;
  }
  .page-resources-responsible-gambling-guide__hero-content p {
    font-size: 1em;
  }
  .page-resources-responsible-gambling-guide__section {
    padding: 60px 0;
  }
  .page-resources-responsible-gambling-guide__section h2 {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-resources-responsible-gambling-guide__section h3 {
    font-size: 1.4em;
  }
  .page-resources-responsible-gambling-guide__container {
    padding: 0 15px;
  }
  .page-resources-responsible-gambling-guide__grid, .page-resources-responsible-gambling-guide__grid-2-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-responsible-gambling-guide__card {
    padding: 25px;
  }
  .page-resources-responsible-gambling-guide__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-responsible-gambling-guide__accordion-content {
    padding: 0 20px;
  }
  .page-resources-responsible-gambling-guide__cta-button--large {
    font-size: 1.1em;
    padding: 15px 35px;
  }
  .page-resources-responsible-gambling-guide__floating-button {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-responsible-gambling-guide__hero-content h1 {
    font-size: 1.8em;
  }
  .page-resources-responsible-gambling-guide__section h2 {
    font-size: 1.8em;
  }
  .page-resources-responsible-gambling-guide__floating-button {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}