.page-responsible-gambling {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f7fa;
  --background-dark: #0a0a2a;
  --accent-color: #e0ac00; /* Slightly darker gold for hover */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-responsible-gambling .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-responsible-gambling .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-gambling .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

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

.page-responsible-gambling .hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling .hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
}

.page-responsible-gambling .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  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);
}

.page-responsible-gambling .cta-button:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling .content-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-responsible-gambling .content-section h2 {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-responsible-gambling .content-section h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-responsible-gambling .content-section h4 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-responsible-gambling .content-section p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: var(--text-dark);
}

.page-responsible-gambling .content-section ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-responsible-gambling .content-section ul li {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.page-responsible-gambling .image-with-text {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling .image-with-text:nth-child(odd) {
  flex-direction: row-reverse;
}

.page-responsible-gambling .image-with-text img {
  width: 45%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling .image-with-text > div {
  width: 55%;
}

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

.page-responsible-gambling .tip-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling .tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling .tip-item h4 {
  color: var(--secondary-color);
  margin-top: 0;
  font-size: 1.3em;
}

.page-responsible-gambling .full-width-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling .content-image {
  width: 80%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.page-responsible-gambling .call-to-action-footer {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 60px;
}

.page-responsible-gambling .cta-button-large {
  display: inline-block;
  padding: 18px 50px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling .cta-button-large:hover {
  background: #000060; /* Slightly darker secondary color */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section Styles */
.page-responsible-gambling .faq-container {
  margin-top: 40px;
}

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

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

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

.page-responsible-gambling .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--secondary-color);
}

.page-responsible-gambling .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-responsible-gambling .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.page-responsible-gambling .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: var(--background-light);
  color: var(--text-dark);
}

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

.page-responsible-gambling .faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-responsible-gambling .hero-content h1 {
    font-size: 2.8em;
  }
  .page-responsible-gambling .hero-content p {
    font-size: 1.1em;
  }
  .page-responsible-gambling .content-section h2 {
    font-size: 2.2em;
  }
  .page-responsible-gambling .image-with-text {
    flex-direction: column;
    text-align: center;
  }
  .page-responsible-gambling .image-with-text:nth-child(odd) {
    flex-direction: column;
  }
  .page-responsible-gambling .image-with-text img {
    width: 80%;
  }
  .page-responsible-gambling .image-with-text > div {
    width: 100%;
  }
  .page-responsible-gambling .full-width-image, .page-responsible-gambling .content-image {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .page-responsible-gambling .hero-section {
    padding: 40px 15px;
  }
  .page-responsible-gambling .hero-content h1 {
    font-size: 2.2em;
  }
  .page-responsible-gambling .hero-content p {
    font-size: 1em;
  }
  .page-responsible-gambling .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-responsible-gambling .content-section {
    padding: 40px 0;
  }
  .page-responsible-gambling .content-section h2 {
    font-size: 1.8em;
  }
  .page-responsible-gambling .content-section h3 {
    font-size: 1.5em;
  }
  .page-responsible-gambling .content-section h4 {
    font-size: 1.2em;
  }
  .page-responsible-gambling .image-with-text img {
    width: 100%;
  }
  .page-responsible-gambling .tips-grid {
    grid-template-columns: 1fr;
  }
  .page-responsible-gambling .cta-button-large {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-responsible-gambling .faq-question {
    padding: 15px 20px;
  }
  .page-responsible-gambling .faq-question h3 {
    font-size: 1.1em;
  }
  .page-responsible-gambling .faq-toggle {
    font-size: 1.5em;
  }
  .page-responsible-gambling .faq-answer {
    padding: 0 20px;
  }
  .page-responsible-gambling .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling .hero-content h1 {
    font-size: 1.8em;
  }
  .page-responsible-gambling .hero-content p {
    font-size: 0.95em;
  }
  .page-responsible-gambling .content-section h2 {
    font-size: 1.6em;
  }
  .page-responsible-gambling .faq-question h3 {
    font-size: 1em;
  }
}