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

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

.page-responsible-gaming .hero-section {
  background: linear-gradient(135deg, #FFD700, #000080);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

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

.page-responsible-gaming .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  opacity: 0.9;
}

.page-responsible-gaming .hero-image {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}

.page-responsible-gaming .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming .cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #000080; /* Midnight Blue */
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-responsible-gaming .cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming .cta-button.small-button {
  padding: 10px 25px;
  font-size: 1em;
}

.page-responsible-gaming .section-title {
  font-size: 2.5em;
  color: #000080; /* Midnight Blue */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 40px;
  position: relative;
}

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

.page-responsible-gaming .content-section, 
.page-responsible-gaming .tools-section, 
.page-responsible-gaming .protection-section, 
.page-responsible-gaming .support-section, 
.page-responsible-gaming .tips-section, 
.page-responsible-gaming .faq-section {
  padding: 60px 0;
}

.page-responsible-gaming .content-section {
  background-color: #fff;
}

.page-responsible-gaming .text-block h3 {
  font-size: 1.8em;
  color: #000080;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-responsible-gaming .text-block p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-responsible-gaming .text-block ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-responsible-gaming .text-block ul li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-responsible-gaming .text-block a {
  color: #000080;
  text-decoration: underline;
  font-weight: bold;
}

.page-responsible-gaming .text-block a:hover {
  color: #FFD700;
}

.page-responsible-gaming .tools-section {
  background-color: #e0e0e0;
  text-align: center;
}

.page-responsible-gaming .tools-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
}

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

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

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

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

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

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

.page-responsible-gaming .protection-section {
  background-color: #f8f8f8;
}

.page-responsible-gaming .support-section {
  background-color: #fff;
}

.page-responsible-gaming .tips-section {
  background-color: #e0e0e0;
}

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

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

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

.page-responsible-gaming .tip-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-responsible-gaming .tip-item p {
  font-size: 1em;
  color: #555;
}

.page-responsible-gaming .faq-section {
  background-color: #f8f8f8;
}

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

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

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

.page-responsible-gaming .faq-question:hover {
  background-color: #f0f0f0;
}

.page-responsible-gaming .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #000080;
}

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

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

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

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

.page-responsible-gaming .faq-answer p {
  margin: 0;
  color: #555;
  font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-responsible-gaming .hero-content h1 {
    font-size: 2.8em;
  }
  .page-responsible-gaming .section-title {
    font-size: 2em;
  }
  .page-responsible-gaming .tool-cards, .page-responsible-gaming .tip-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-responsible-gaming .hero-section {
    padding: 60px 0;
  }
  .page-responsible-gaming .hero-content h1 {
    font-size: 2.2em;
  }
  .page-responsible-gaming .hero-content p {
    font-size: 1em;
  }
  .page-responsible-gaming .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-responsible-gaming .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-responsible-gaming .content-section, 
  .page-responsible-gaming .tools-section, 
  .page-responsible-gaming .protection-section, 
  .page-responsible-gaming .support-section, 
  .page-responsible-gaming .tips-section, 
  .page-responsible-gaming .faq-section {
    padding: 40px 0;
  }
  .page-responsible-gaming .text-block h3 {
    font-size: 1.5em;
  }
  .page-responsible-gaming .tool-card, .page-responsible-gaming .tip-item {
    padding: 20px;
  }
  .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.5em;
  }
  .page-responsible-gaming .faq-answer {
    padding: 0 20px;
  }
  .page-responsible-gaming .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-responsible-gaming .hero-content h1 {
    font-size: 1.8em;
  }
  .page-responsible-gaming .hero-content p {
    font-size: 0.95em;
  }
  .page-responsible-gaming .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-responsible-gaming .section-title {
    font-size: 1.5em;
  }
  .page-responsible-gaming .tool-cards, .page-responsible-gaming .tip-list {
    grid-template-columns: 1fr;
  }
  .page-responsible-gaming .container {
    padding: 0 15px;
  }
  .page-responsible-gaming .text-block h3 {
    font-size: 1.3em;
  }
  .page-responsible-gaming .faq-question h3 {
    font-size: 1em;
  }
}