.page-responsible-gaming {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

/* Hero Section */
.page-responsible-gaming .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, #FFD700, #8B0000);
  color: #ffffff;
}

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

.page-responsible-gaming .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-responsible-gaming .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-responsible-gaming h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gaming .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #EEEEEE;
}

.page-responsible-gaming .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Primary color */
  color: #8B0000; /* Darker text for contrast */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #FFD700;
}

.page-responsible-gaming .cta-button:hover {
  background: #8B0000; /* Secondary color */
  color: #FFD700; /* Primary color for text */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-color: #FFD700;
}

/* General Section Styling */
.page-responsible-gaming section {
  padding: 60px 0;
  text-align: center;
}

.page-responsible-gaming section:nth-of-type(even) {
  background-color: #eeeeee;
}

.page-responsible-gaming h2 {
  font-size: 2.2em;
  color: #8B0000; /* Secondary color */
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-responsible-gaming h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Primary color */
  border-radius: 2px;
}

.page-responsible-gaming h3 {
  font-size: 1.6em;
  color: #8B0000; /* Secondary color */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-responsible-gaming p {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  text-align: justify;
}

.page-responsible-gaming ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.page-responsible-gaming ul li {
  background-color: #ffffff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700; /* Primary color */
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-size: 1.05em;
  color: #333333;
}

.page-responsible-gaming img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Tool Items */
.page-responsible-gaming .tool-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.page-responsible-gaming .tool-item img {
  width: 150px; /* Larger image for content */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 0; /* Not a person, so no rounded image */
  box-shadow: none;
}

.page-responsible-gaming .tool-item h3 {
  color: #8B0000;
  font-size: 1.8em;
}

.page-responsible-gaming .tool-item p {
  color: #555555;
  font-size: 1.05em;
  text-align: center;
}

/* FAQ Section */
.page-responsible-gaming .section-faq {
  background-color: #f8f8f8;
}

.page-responsible-gaming .faq-list {
  margin-top: 40px;
  text-align: left;
}

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

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

.page-responsible-gaming .faq-question:hover {
  background: #f5f5f5;
  border-color: #FFD700;
}

.page-responsible-gaming .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333333;
  text-align: left;
  flex-grow: 1;
}

.page-responsible-gaming .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #8B0000; /* Secondary color */
  transition: transform 0.3s ease;
}

.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;
  background: #f9f9f9;
  color: #555555;
}

.page-responsible-gaming .faq-answer p {
  margin: 0;
  padding: 15px 0;
  text-align: justify;
}

.page-responsible-gaming .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px;
  border-top: 1px solid #e0e0e0;
}

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

/* Commitment Section */
.page-responsible-gaming .section-commitment {
  background: linear-gradient(135deg, #8B0000, #5a0000);
  color: #ffffff;
  padding: 80px 0;
}

.page-responsible-gaming .section-commitment h2 {
  color: #FFD700;
}

.page-responsible-gaming .section-commitment h2::after {
  background-color: #ffffff;
}

.page-responsible-gaming .section-commitment p {
  color: #EEEEEE;
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-responsible-gaming .primary-cta {
  background: #FFD700; /* Primary color */
  color: #8B0000; /* Secondary color for text */
  border: 2px solid #FFD700;
}

.page-responsible-gaming .primary-cta:hover {
  background: #FFFFFF;
  color: #8B0000;
  border-color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-responsible-gaming h1 {
    font-size: 2.2em;
  }
  .page-responsible-gaming h2 {
    font-size: 1.8em;
  }
  .page-responsible-gaming h3 {
    font-size: 1.4em;
  }
  .page-responsible-gaming .hero-content p {
    font-size: 1.1em;
  }
  .page-responsible-gaming .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-responsible-gaming section {
    padding: 40px 0;
  }
  .page-responsible-gaming .tool-item {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .page-responsible-gaming .hero-section {
    padding: 40px 15px;
  }
  .page-responsible-gaming .hero-image img {
    border-radius: 4px;
  }
  .page-responsible-gaming h1 {
    font-size: 1.8em;
  }
  .page-responsible-gaming h2 {
    font-size: 1.6em;
  }
  .page-responsible-gaming h3 {
    font-size: 1.2em;
  }
  .page-responsible-gaming .hero-content p {
    font-size: 1em;
  }
  .page-responsible-gaming .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-responsible-gaming .tool-item img {
    width: 100px;
    height: 100px;
  }
  .page-responsible-gaming ul li {
    padding: 12px 15px;
    font-size: 0.95em;
  }
  .page-responsible-gaming .faq-question {
    padding: 15px 20px;
  }
  .page-responsible-gaming .faq-question h3 {
    font-size: 1.1em;
  }
  .page-responsible-gaming .faq-toggle {
    font-size: 20px;
  }
  .page-responsible-gaming .faq-answer {
    padding: 0 20px;
  }
  .page-responsible-gaming .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}