.page-responsible-gaming {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #0A1931; /* Main dark background */
  line-height: 1.6;
}

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

.page-responsible-gaming-hero {
  background: linear-gradient(135deg, #0A1931, #2C3E50); /* Dark gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-responsible-gaming-hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gaming-hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-responsible-gaming .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #32CD32; /* Bright green for CTA */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming .cta-button:hover {
  background: #28a745; /* Darker green on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-responsible-gaming section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-responsible-gaming h2 {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-responsible-gaming p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-responsible-gaming ul {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-responsible-gaming ul li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-responsible-gaming strong {
  color: #FFD700;
}

.page-responsible-gaming .content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* FAQ Section */
.page-responsible-gaming .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1A2A44; /* Slightly lighter dark background for FAQ items */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #0A1931; /* Darker background for question */
  color: #FFD700; /* Gold for question text */
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-responsible-gaming .faq-question:hover {
  background-color: #15243B;
  color: #FFFFFF;
}

.page-responsible-gaming .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: inherit; /* Inherit color from parent */
}

.page-responsible-gaming .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #32CD32; /* Bright green for toggle icon */
  transition: transform 0.3s ease;
}

.page-responsible-gaming .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700; /* Gold when active */
}

.page-responsible-gaming .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  color: #E0E0E0;
}

.page-responsible-gaming .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
}

.page-responsible-gaming .faq-answer p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-responsible-gaming-hero h1 {
    font-size: 2.8em;
  }
  .page-responsible-gaming h2 {
    font-size: 2em;
  }
  .page-responsible-gaming h3 {
    font-size: 1.5em;
  }
  .page-responsible-gaming p, .page-responsible-gaming ul li {
    font-size: 1em;
  }
  .page-responsible-gaming .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-responsible-gaming .faq-question {
    padding: 15px 20px;
  }
  .page-responsible-gaming .faq-answer {
    padding: 0 20px;
  }
  .page-responsible-gaming .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 768px) {
  .page-responsible-gaming-hero h1 {
    font-size: 2.2em;
  }
  .page-responsible-gaming-hero p {
    font-size: 1em;
  }
  .page-responsible-gaming h2 {
    font-size: 1.8em;
  }
  .page-responsible-gaming h3 {
    font-size: 1.3em;
  }
  .page-responsible-gaming .container {
    padding: 15px;
  }
  .page-responsible-gaming section {
    padding: 40px 0;
  }
  .page-responsible-gaming ul {
    margin-left: 20px;
  }
  .page-responsible-gaming .faq-question {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 12px 15px;
  }
  .page-responsible-gaming .faq-question h3 {
    margin-bottom: 5px;
  }
  .page-responsible-gaming .faq-toggle {
    align-self: flex-end;
    margin-top: -30px;
  }
  .page-responsible-gaming .faq-answer {
    padding: 0 15px;
  }
  .page-responsible-gaming .faq-item.active .faq-answer {
    padding: 10px 15px;
  }
}