.page-responsible-gambling {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A1931;
  line-height: 1.6;
  padding-bottom: 50px;
}

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

.page-responsible-gambling h1, .page-responsible-gambling h2, .page-responsible-gambling h3 {
  color: #E0B143;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-responsible-gambling h1 {
  font-size: 3.2em;
  text-align: center;
}

.page-responsible-gambling h2 {
  font-size: 2.5em;
  border-bottom: 2px solid #E0B143;
  padding-bottom: 10px;
  margin-top: 40px;
}

.page-responsible-gambling h3 {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-top: 30px;
}

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

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

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

.page-responsible-gambling a {
  color: #E0B143;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-responsible-gambling a:hover {
  color: #F0D070;
  text-decoration: underline;
}

.page-responsible-gambling .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #E0B143;
  color: #0A1931;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-responsible-gambling .cta-button:hover {
  background: #F0D070;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling .secondary-button {
  background: #0A1931;
  color: #E0B143;
  border: 2px solid #E0B143;
}

.page-responsible-gambling .secondary-button:hover {
  background: #E0B143;
  color: #0A1931;
}

/* Hero Section */
.page-responsible-gambling .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, #0A1931 0%, #1a3050 100%);
}

.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 20px rgba(0, 0, 0, 0.4);
}

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

/* General Section Styling */
.page-responsible-gambling section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(224, 177, 67, 0.2);
}

.page-responsible-gambling section:last-of-type {
  border-bottom: none;
}

.page-responsible-gambling .section-intro, .page-responsible-gambling .section-conclusion {
  text-align: center;
}

.page-responsible-gambling .section-intro p, .page-responsible-gambling .section-conclusion p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gambling .sign-item, .page-responsible-gambling .tool-item {
  background-color: #1A2B47;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling .sign-item h3, .page-responsible-gambling .tool-item h3 {
  color: #E0B143;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-responsible-gambling .content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* FAQ Section */
.page-responsible-gambling .section-faq {
  padding-top: 40px;
}

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

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

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

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

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

.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: #0A1931;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-responsible-gambling h1 {
    font-size: 2.8em;
  }
  .page-responsible-gambling h2 {
    font-size: 2.2em;
  }
  .page-responsible-gambling h3 {
    font-size: 1.6em;
  }
  .page-responsible-gambling p, .page-responsible-gambling ul li {
    font-size: 1em;
  }
  .page-responsible-gambling .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-responsible-gambling h1 {
    font-size: 2.2em;
  }
  .page-responsible-gambling h2 {
    font-size: 1.8em;
  }
  .page-responsible-gambling h3 {
    font-size: 1.4em;
  }
  .page-responsible-gambling .hero-section {
    padding: 60px 15px 30px;
  }
  .page-responsible-gambling section {
    padding: 40px 0;
  }
  .page-responsible-gambling .container {
    padding: 0 15px;
  }
  .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: 20px;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling h1 {
    font-size: 1.8em;
  }
  .page-responsible-gambling h2 {
    font-size: 1.5em;
  }
  .page-responsible-gambling h3 {
    font-size: 1.2em;
  }
  .page-responsible-gambling p, .page-responsible-gambling ul li {
    font-size: 0.95em;
  }
  .page-responsible-gambling .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-responsible-gambling ul {
    margin-left: 20px;
  }
}