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

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

.page-responsible-gaming-hero {
  background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.page-responsible-gaming-hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming-hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-responsible-gaming-hero-content p {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-responsible-gaming-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

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

.page-responsible-gaming-section h2 {
  font-size: 2.5em;
  color: #CC0000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-responsible-gaming-section h3 {
  font-size: 1.8em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-responsible-gaming-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555555;
}

.page-responsible-gaming-image-content {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-responsible-gaming-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
}

.page-responsible-gaming-button-primary {
  background-color: #CC0000;
  color: #ffffff;
  border: 2px solid #CC0000;
}

.page-responsible-gaming-button-primary:hover {
  background-color: #A30000;
  border-color: #A30000;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming-button-secondary {
  background-color: #FFD700;
  color: #333333;
  border: 2px solid #FFD700;
}

.page-responsible-gaming-button-secondary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-responsible-gaming-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-responsible-gaming-card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-responsible-gaming-card h3 {
  font-size: 1.5em;
  color: #CC0000;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-responsible-gaming-card p {
  font-size: 1em;
  color: #666666;
}

/* FAQ Styles */
.page-responsible-gaming-faq {
  background-color: #f0f2f5;
}

.faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

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

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

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #CC0000;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0;
}

.faq-answer p {
  margin: 0;
  font-size: 1.1em;
  color: #666666;
}

.page-responsible-gaming-cta {
  background: linear-gradient(135deg, #FFD700 0%, #CC0000 100%);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-responsible-gaming-cta-content h2 {
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming-cta-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-responsible-gaming-cta-buttons .page-responsible-gaming-button-primary {
  background-color: #ffffff;
  color: #CC0000;
  border-color: #ffffff;
}

.page-responsible-gaming-cta-buttons .page-responsible-gaming-button-primary:hover {
  background-color: #f0f0f0;
  color: #A30000;
  border-color: #f0f0f0;
}

.page-responsible-gaming-cta-buttons .page-responsible-gaming-button-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-responsible-gaming-cta-buttons .page-responsible-gaming-button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-responsible-gaming-hero-content h1 {
    font-size: 2.5em;
  }
  .page-responsible-gaming-hero-content p {
    font-size: 1.1em;
  }
  .page-responsible-gaming-section h2 {
    font-size: 2em;
  }
  .page-responsible-gaming-section h3 {
    font-size: 1.6em;
  }
  .page-responsible-gaming-card {
    padding: 25px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-answer p {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-responsible-gaming-hero {
    padding: 60px 0;
  }
  .page-responsible-gaming-hero-content h1 {
    font-size: 2em;
  }
  .page-responsible-gaming-hero-content p {
    font-size: 1em;
  }
  .page-responsible-gaming-section {
    padding: 40px 0;
  }
  .page-responsible-gaming-section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-responsible-gaming-section h3 {
    font-size: 1.4em;
  }
  .page-responsible-gaming-grid {
    grid-template-columns: 1fr;
  }
  .page-responsible-gaming-list {
    margin-left: 20px;
  }
  .page-responsible-gaming-list li {
    font-size: 1em;
  }
  .page-responsible-gaming-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-responsible-gaming-cta {
    padding: 60px 0;
  }
  .page-responsible-gaming-cta-content p {
    font-size: 1.1em;
  }
}