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

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

.page-responsible-gaming .content-block {
  padding: 60px 0;
}

.page-responsible-gaming .content-block.bg-dark {
  background-color: #2a2a2a;
}

.page-responsible-gaming h1,
.page-responsible-gaming h2,
.page-responsible-gaming h3 {
  color: #FFD700; /* Gold */
  margin-bottom: 25px;
  line-height: 1.2;
  text-align: center;
}

.page-responsible-gaming h1 {
  font-size: 3.2em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gaming h2 {
  font-size: 2.5em;
  font-weight: bold;
  border-bottom: 2px solid #8B0000; /* Burgundy */
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.page-responsible-gaming h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

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

.page-responsible-gaming ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gaming ul li {
  background-color: #333333;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.05em;
  color: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #8B0000;
}

.page-responsible-gaming ul li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

/* 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: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a, #333333);
}

.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: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-responsible-gaming .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold */
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-responsible-gaming .cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-responsible-gaming .cta-button-small {
  display: inline-block;
  padding: 10px 25px;
  background: #8B0000; /* Burgundy */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(139, 0, 0, 0.4);
}

.page-responsible-gaming .cta-button-small:hover {
  background: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.6);
}

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

.page-responsible-gaming .principle-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #FFD700;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-responsible-gaming .principle-item:hover {
  transform: translateY(-8px);
  background-color: #3a3a3a;
}

.page-responsible-gaming .principle-item img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming .principle-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-responsible-gaming .principle-item p {
  font-size: 1em;
  color: #c0c0c0;
  text-align: center;
}

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

.page-responsible-gaming .tool-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #8B0000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-responsible-gaming .tool-item:hover {
  transform: translateY(-8px);
  background-color: #3a3a3a;
}

.page-responsible-gaming .tool-item img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming .tool-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 10px;
}

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

/* Addiction Section */
.page-responsible-gaming .addiction-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-responsible-gaming .addiction-content .text-content {
  flex: 2;
  min-width: 300px;
  text-align: left;
}

.page-responsible-gaming .addiction-content .text-content h3 {
  text-align: left;
  color: #FFD700;
  font-size: 2em;
}

.page-responsible-gaming .addiction-content .text-content p {
  text-align: left;
  color: #e0e0e0;
}

.page-responsible-gaming .addiction-content .text-content ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 25px;
}

.page-responsible-gaming .addiction-content .text-content ul li {
  background-color: transparent;
  border-left: none;
  box-shadow: none;
  padding: 5px 0;
  color: #e0e0e0;
  font-size: 1.05em;
}

.page-responsible-gaming .addiction-content .text-content ul li::before {
  content: '';
}

.page-responsible-gaming .addiction-content .image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

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

.page-responsible-gaming .support-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #FFD700;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-responsible-gaming .support-item:hover {
  transform: translateY(-8px);
  background-color: #3a3a3a;
}

.page-responsible-gaming .support-item img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming .support-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-responsible-gaming .support-item p {
  font-size: 1em;
  color: #c0c0c0;
  text-align: center;
}

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

.page-responsible-gaming .tip-item {
  background-color: #333333;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid #8B0000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-responsible-gaming .tip-item:hover {
  transform: translateY(-5px);
  background-color: #444444;
}

.page-responsible-gaming .tip-item img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.page-responsible-gaming .tip-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-responsible-gaming .tip-item p {
  font-size: 0.95em;
  color: #c0c0c0;
  text-align: center;
}

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

.page-responsible-gaming .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gaming .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-responsible-gaming .faq-question:hover {
  background: #3a3a3a;
}

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

.page-responsible-gaming .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #8B0000;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.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: #333333;
  color: #e0e0e0;
  border-radius: 0 0 8px 8px;
}

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

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

.page-responsible-gaming .faq-answer p {
  text-align: left;
  font-size: 1.05em;
  color: #e0e0e0;
  margin-bottom: 0;
}

/* Contact CTA Section */
.page-responsible-gaming .contact-cta {
  text-align: center;
  background-color: #8B0000; /* Burgundy */
  padding: 80px 20px;
  border-radius: 0;
}

.page-responsible-gaming .contact-cta h2 {
  color: #FFD700;
  font-size: 2.8em;
  border-bottom: none;
  margin-bottom: 20px;
}

.page-responsible-gaming .contact-cta p {
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-responsible-gaming .contact-cta .cta-button {
  background: #FFD700;
  color: #8B0000;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-responsible-gaming .contact-cta .cta-button:hover {
  background: #e6c200;
  color: #6a0000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-responsible-gaming h1 {
    font-size: 2.8em;
  }
  .page-responsible-gaming h2 {
    font-size: 2.2em;
  }
  .page-responsible-gaming h3 {
    font-size: 1.5em;
  }
  .page-responsible-gaming .hero-content p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-responsible-gaming .content-block {
    padding: 40px 0;
  }
  .page-responsible-gaming h1 {
    font-size: 2.2em;
  }
  .page-responsible-gaming h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-responsible-gaming h3 {
    font-size: 1.3em;
  }
  .page-responsible-gaming p {
    font-size: 1em;
  }
  .page-responsible-gaming .hero-section {
    padding: 60px 15px;
  }
  .page-responsible-gaming .hero-image img {
    border-radius: 8px;
  }
  .page-responsible-gaming .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-responsible-gaming .principles-grid, 
  .page-responsible-gaming .tools-grid, 
  .page-responsible-gaming .support-grid, 
  .page-responsible-gaming .tips-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-responsible-gaming .principle-item, 
  .page-responsible-gaming .tool-item, 
  .page-responsible-gaming .support-item, 
  .page-responsible-gaming .tip-item {
    padding: 25px;
  }
  .page-responsible-gaming .addiction-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-responsible-gaming .addiction-content .text-content, 
  .page-responsible-gaming .addiction-content .image-content {
    min-width: unset;
    width: 100%;
  }
  .page-responsible-gaming .addiction-content .text-content h3 {
    text-align: center;
  }
  .page-responsible-gaming .addiction-content .text-content p,
  .page-responsible-gaming .addiction-content .text-content ul {
    text-align: left;
  }
  .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: 1.8em;
  }
  .page-responsible-gaming .faq-answer {
    padding: 0 20px;
  }
  .page-responsible-gaming .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-responsible-gaming .contact-cta h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-responsible-gaming h1 {
    font-size: 1.8em;
  }
  .page-responsible-gaming h2 {
    font-size: 1.5em;
  }
  .page-responsible-gaming h3 {
    font-size: 1.2em;
  }
  .page-responsible-gaming .hero-content p {
    font-size: 0.95em;
  }
  .page-responsible-gaming .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-responsible-gaming ul li {
    font-size: 0.95em;
  }
  .page-responsible-gaming .principle-item img,
  .page-responsible-gaming .tool-item img,
  .page-responsible-gaming .support-item img {
    width: 100px;
  }
  .page-responsible-gaming .tip-item img {
    width: 90px;
  }
  .page-responsible-gaming .faq-question h3 {
    font-size: 1em;
  }
  .page-responsible-gaming .faq-toggle {
    font-size: 1.5em;
  }
  .page-responsible-gaming .contact-cta h2 {
    font-size: 1.8em;
  }
  .page-responsible-gaming .contact-cta p {
    font-size: 1em;
  }
}