/* style/responsible-gambling-get-help.css */

.page-responsible-gambling-get-help {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #0A2239; /* Main text color based on primary brand color, ensuring contrast */
  background-color: #f8f8f8; /* Light background for readability */
}

.page-responsible-gambling-get-help__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-responsible-gambling-get-help__hero {
  background: linear-gradient(135deg, #0A2239 0%, #304e6e 100%); /* Dark gradient based on primary color */
  color: #FFFFFF; /* White text for dark background */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gambling-get-help__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,subtle_pattern]'); /* Abstract pattern for background */
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-responsible-gambling-get-help__hero > div {
  position: relative;
  z-index: 1;
}

.page-responsible-gambling-get-help__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B400; /* Accent color for title */
  font-weight: bold;
}

.page-responsible-gambling-get-help__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gambling-get-help__hero-actions .page-responsible-gambling-get-help__btn {
  margin: 0 10px;
}

.page-responsible-gambling-get-help__section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-responsible-gambling-get-help__section--light {
  background-color: #f0f4f8; /* Lighter shade of background for contrast */
}

.page-responsible-gambling-get-help__section-title {
  font-size: 2.5em;
  color: #0A2239;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-responsible-gambling-get-help__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B400;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-responsible-gambling-get-help__text-center {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

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

.page-responsible-gambling-get-help__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-responsible-gambling-get-help__card, .page-responsible-gambling-get-help__info-card, .page-responsible-gambling-get-help__feature-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-responsible-gambling-get-help__card:hover,
.page-responsible-gambling-get-help__info-card:hover,
.page-responsible-gambling-get-help__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-responsible-gambling-get-help__card-icon,
.page-responsible-gambling-get-help__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-responsible-gambling-get-help__card-title,
.page-responsible-gambling-get-help__info-card-title,
.page-responsible-gambling-get-help__feature-title {
  font-size: 1.5em;
  color: #0A2239;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-responsible-gambling-get-help__card p,
.page-responsible-gambling-get-help__info-card p,
.page-responsible-gambling-get-help__feature-item p {
  font-size: 1em;
  color: #333333;
  margin-bottom: 15px;
}

.page-responsible-gambling-get-help__card ul,
.page-responsible-gambling-get-help__info-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  text-align: left;
  color: #444444;
}

.page-responsible-gambling-get-help__card ul li,
.page-responsible-gambling-get-help__info-card ul li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95em;
}

.page-responsible-gambling-get-help__card ul li::before,
.page-responsible-gambling-get-help__info-card ul li::before {
  content: '✓';
  color: #E0B400; /* Accent color for list checkmarks */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-responsible-gambling-get-help__list--bullet {
  list-style: disc inside;
  padding-left: 20px;
  margin: 20px 0;
  color: #333333;
}

.page-responsible-gambling-get-help__list--bullet li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-responsible-gambling-get-help__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-responsible-gambling-get-help__btn--primary {
  background-color: #E0B400; /* Accent color for primary button */
  color: #0A2239; /* Dark text for light background */
}

.page-responsible-gambling-get-help__btn--primary:hover {
  background-color: #f5c83b;
  transform: translateY(-2px);
}

.page-responsible-gambling-get-help__btn--secondary {
  background-color: transparent;
  color: #E0B400; /* Accent color for secondary button text */
  border: 2px solid #E0B400;
}

.page-responsible-gambling-get-help__btn--secondary:hover {
  background-color: #E0B400;
  color: #0A2239;
  transform: translateY(-2px);
}

.page-responsible-gambling-get-help__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-responsible-gambling-get-help__cta-section {
    background-color: #0A2239; /* Primary brand color for CTA background */
    color: #FFFFFF;
    padding: 50px 30px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
}

.page-responsible-gambling-get-help__cta-text {
    font-size: 1.6em;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-responsible-gambling-get-help__title {
    font-size: 2.5em;
  }
  .page-responsible-gambling-get-help__section-title {
    font-size: 2em;
  }
  .page-responsible-gambling-get-help__hero {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .page-responsible-gambling-get-help__title {
    font-size: 2em;
  }
  .page-responsible-gambling-get-help__subtitle {
    font-size: 1.1em;
  }
  .page-responsible-gambling-get-help__section {
    padding: 40px 0;
  }
  .page-responsible-gambling-get-help__section-title {
    font-size: 1.8em;
  }
  .page-responsible-gambling-get-help__grid,
  .page-responsible-gambling-get-help__grid--3-cols {
    grid-template-columns: 1fr;
  }
  .page-responsible-gambling-get-help__hero-actions .page-responsible-gambling-get-help__btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
  .page-responsible-gambling-get-help__cta-text {
      font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling-get-help__title {
    font-size: 1.8em;
  }
  .page-responsible-gambling-get-help__subtitle {
    font-size: 1em;
  }
  .page-responsible-gambling-get-help__section-title {
    font-size: 1.5em;
  }
  .page-responsible-gambling-get-help__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-responsible-gambling-get-help__card,
  .page-responsible-gambling-get-help__info-card,
  .page-responsible-gambling-get-help__feature-item {
    padding: 20px;
  }
  .page-responsible-gambling-get-help__cta-text {
      font-size: 1.1em;
  }
}