/* style/responsible-gambling.css */
.page-responsible-gambling {
  background-color: #1a1a2e;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  font-size: 1.05em;
}

.page-responsible-gambling__hero-section {
  position: relative;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  overflow: hidden;
  background-color: #017439;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-responsible-gambling__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-responsible-gambling__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.page-responsible-gambling__hero-title {
  font-size: 3.2em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-responsible-gambling__cta-button {
  display: inline-block;
  background-color: #C30808;
  color: #FFFF00;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  font-size: 1.1em;
}

.page-responsible-gambling__cta-button:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-responsible-gambling__cta-button--secondary {
  background-color: #017439;
  color: #ffffff;
  margin-left: 20px;
}

.page-responsible-gambling__cta-button--secondary:hover {
  background-color: #005a2b;
}

.page-responsible-gambling__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-responsible-gambling__section--dark {
  background-color: #017439;
  color: #ffffff;
}

.page-responsible-gambling__section--light {
  background-color: #2a2a4e;
  color: #ffffff;
}

.page-responsible-gambling__section-title {
  font-size: 2.5em;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__section-subtitle {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gambling__content-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-responsible-gambling__card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.page-responsible-gambling__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-responsible-gambling__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-responsible-gambling__card-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-responsible-gambling__card-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-responsible-gambling__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  text-align: left;
}

.page-responsible-gambling__list-item {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-responsible-gambling__list-item::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: #017439;
  font-size: 1.2em;
}

.page-responsible-gambling__faq-container {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-responsible-gambling__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-responsible-gambling__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: bold;
  font-size: 1.1em;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-responsible-gambling__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-responsible-gambling__faq-qtext {
  flex-grow: 1;
}

.page-responsible-gambling__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #017439;
}

.page-responsible-gambling__faq-item[open] .page-responsible-gambling__faq-answer {
  max-height: 2000px;
  padding-top: 15px;
}