/* style/responsible-gambling-support-resources.css */
.page-responsible-gambling-support-resources {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-responsible-gambling-support-resources__hero {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gambling-support-resources__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-responsible-gambling-support-resources__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-support-resources__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-responsible-gambling-support-resources__hero-cta {
  display: inline-block;
  background-color: #ffc107;
  color: #007bff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-support-resources__hero-cta:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-responsible-gambling-support-resources__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

.page-responsible-gambling-support-resources__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-responsible-gambling-support-resources__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-responsible-gambling-support-resources__section:last-of-type {
  border-bottom: none;
}

.page-responsible-gambling-support-resources__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-responsible-gambling-support-resources__content-block {
  margin-bottom: 40px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling-support-resources__content-subtitle {
  font-size: 1.8em;
  color: #0056b3;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-responsible-gambling-support-resources__content-block p {
  margin-bottom: 15px;
  color: #555;
}

.page-responsible-gambling-support-resources__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-responsible-gambling-support-resources__list li {
  margin-bottom: 10px;
}

.page-responsible-gambling-support-resources__content-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.page-responsible-gambling-support-resources__card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-support-resources__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-responsible-gambling-support-resources__card-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-responsible-gambling-support-resources__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-responsible-gambling-support-resources__card p {
  color: #666;
}

.page-responsible-gambling-support-resources__grid--organizations {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-responsible-gambling-support-resources__org-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #007bff;
}

.page-responsible-gambling-support-resources__org-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-responsible-gambling-support-resources__org-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-responsible-gambling-support-resources__org-description {
  color: #666;
  margin-bottom: 15px;
}

.page-responsible-gambling-support-resources__org-contact {
  margin-bottom: 10px;
  color: #444;
}

.page-responsible-gambling-support-resources__org-contact strong {
  color: #0056b3;
}

.page-responsible-gambling-support-resources__org-cta {
  display: inline-block;
  background-color: #ffc107;
  color: #007bff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-responsible-gambling-support-resources__org-cta:hover {
  background-color: #e0a800;
}

.page-responsible-gambling-support-resources__note {
  text-align: center;
  font-style: italic;
  color: #777;
  margin-top: 40px;
  font-size: 0.95em;
}

.page-responsible-gambling-support-resources__list--tips {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.page-responsible-gambling-support-resources__list--tips li {
  background-color: #fff;
  padding: 15px 25px;
  margin-bottom: 15px;
  border-left: 4px solid #007bff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #444;
}

.page-responsible-gambling-support-resources__list--tips li strong {
  color: #0056b3;
}

.page-responsible-gambling-support-resources__contact-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
  text-align: center;
}

.page-responsible-gambling-support-resources__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

.page-responsible-gambling-support-resources__contact-list li strong {
  color: #007bff;
}

.page-responsible-gambling-support-resources__contact-cta {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-support-resources__contact-cta:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-responsible-gambling-support-resources__explore-xibet {
  background: linear-gradient(to right, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gambling-support-resources__explore-xibet-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-responsible-gambling-support-resources__explore-xibet .page-responsible-gambling-support-resources__section-title {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-support-resources__explore-xibet p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-responsible-gambling-support-resources__cta-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-responsible-gambling-support-resources__main-cta,
.page-responsible-gambling-support-resources__secondary-cta {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-support-resources__main-cta {
  background-color: #ffc107;
  color: #007bff;
}

.page-responsible-gambling-support-resources__main-cta:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-support-resources__secondary-cta {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-responsible-gambling-support-resources__secondary-cta:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-support-resources__explore-xibet-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-responsible-gambling-support-resources__hero {
    padding: 60px 0;
  }

  .page-responsible-gambling-support-resources__hero-title {
    font-size: 2.5em;
  }

  .page-responsible-gambling-support-resources__hero-description {
    font-size: 1em;
  }

  .page-responsible-gambling-support-resources__section-title {
    font-size: 2em;
  }

  .page-responsible-gambling-support-resources__content-subtitle {
    font-size: 1.5em;
  }

  .page-responsible-gambling-support-resources__grid {
    grid-template-columns: 1fr;
  }

  .page-responsible-gambling-support-resources__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling-support-resources__hero-title {
    font-size: 2em;
  }

  .page-responsible-gambling-support-resources__hero-cta,
  .page-responsible-gambling-support-resources__contact-cta,
  .page-responsible-gambling-support-resources__main-cta,
  .page-responsible-gambling-support-resources__secondary-cta {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-responsible-gambling-support-resources__section-title {
    font-size: 1.8em;
  }

  .page-responsible-gambling-support-resources__content-block {
    padding: 20px;
  }

  .page-responsible-gambling-support-resources__card {
    padding: 20px;
  }
}