.page-responsible-gambling-help {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-responsible-gambling-help-hero {
  background: linear-gradient(135deg, #FFD700, #000080);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.page-responsible-gambling-help-hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-responsible-gambling-help-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling-help-hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-responsible-gambling-help-cta-button {
  display: inline-block;
  background: #FFD700;
  color: #000080;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-help-cta-button:hover {
  background: #e0b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-responsible-gambling-help-section:last-of-type {
  border-bottom: none;
}

.page-responsible-gambling-help-section-title {
  font-size: 2.5em;
  color: #000080;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-responsible-gambling-help-what-is .page-responsible-gambling-help-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-responsible-gambling-help-what-is .page-responsible-gambling-help-text-content {
  flex: 1;
}

.page-responsible-gambling-help-what-is .page-responsible-gambling-help-image-content {
  flex: 1;
  text-align: center;
}

.page-responsible-gambling-help-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-help-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-responsible-gambling-help-list li {
  margin-bottom: 10px;
  color: #555;
}

.page-responsible-gambling-help-list-contact {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-responsible-gambling-help-list-contact li {
  margin-bottom: 10px;
  color: #555;
}

.page-responsible-gambling-help-link {
  color: #000080;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-responsible-gambling-help-link:hover {
  color: #FFD700;
}

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

.page-responsible-gambling-help-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-help-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-responsible-gambling-help-card-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-responsible-gambling-help-card-title {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 15px;
}

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

.page-responsible-gambling-help-tip-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;
}

.page-responsible-gambling-help-tip-item:hover {
  transform: translateY(-5px);
}

.page-responsible-gambling-help-tip-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-responsible-gambling-help-tip-item h3 {
  font-size: 1.4em;
  color: #000080;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-responsible-gambling-help-faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fdfdfd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #000080;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #000080;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to accommodate content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.faq-answer p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-responsible-gambling-help-what-is .page-responsible-gambling-help-content-wrapper {
    flex-direction: column;
  }

  .page-responsible-gambling-help-what-is .page-responsible-gambling-help-image-content {
    margin-top: 30px;
  }

  .page-responsible-gambling-help-hero-title {
    font-size: 2.5em;
  }

  .page-responsible-gambling-help-hero-description {
    font-size: 1.1em;
  }

  .page-responsible-gambling-help-section-title {
    font-size: 2em;
  }

  .page-responsible-gambling-help-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-responsible-gambling-help-grid-tips {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-responsible-gambling-help-hero {
    padding: 60px 0;
  }

  .page-responsible-gambling-help-hero-title {
    font-size: 2em;
  }

  .page-responsible-gambling-help-hero-description {
    font-size: 1em;
  }

  .page-responsible-gambling-help-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-responsible-gambling-help-section {
    padding: 40px 0;
  }

  .page-responsible-gambling-help-section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-toggle {
    font-size: 1.5em;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling-help-hero-title {
    font-size: 1.8em;
  }

  .page-responsible-gambling-help-section-title {
    font-size: 1.5em;
  }

  .page-responsible-gambling-help-grid, .page-responsible-gambling-help-grid-tips {
    grid-template-columns: 1fr;
  }

  .page-responsible-gambling-help-card, .page-responsible-gambling-help-tip-item {
    padding: 25px;
  }

  .page-responsible-gambling-help-card-image, .page-responsible-gambling-help-tip-icon {
    width: 100px;
    height: 100px;
  }
}