/* style/responsible-gambling-self-exclusion.css */

/* Body background is dark (#08160F), so default text color should be light (#F2FFF6) */
.page-responsible-gambling-self-exclusion {
  color: #F2FFF6; /* Text Main */
  background-color: transparent; /* Inherit from body var(--bg-color) */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-responsible-gambling-self-exclusion__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F; /* Background */
  overflow: hidden;
}

.page-responsible-gambling-self-exclusion__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.page-responsible-gambling-self-exclusion__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-responsible-gambling-self-exclusion__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

.page-responsible-gambling-self-exclusion__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Using clamp for responsive H1 */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-responsible-gambling-self-exclusion__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-responsible-gambling-self-exclusion__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-responsible-gambling-self-exclusion__btn-primary,
.page-responsible-gambling-self-exclusion__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-responsible-gambling-self-exclusion__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-responsible-gambling-self-exclusion__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-responsible-gambling-self-exclusion__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Brighter green for contrast */
  border: 2px solid #2AD16F; /* Border */
}

.page-responsible-gambling-self-exclusion__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  color: #F2FFF6;
}

.page-responsible-gambling-self-exclusion__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #08160F; /* Background */
  border-radius: 8px;
}

.page-responsible-gambling-self-exclusion__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-responsible-gambling-self-exclusion__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #22C768; /* Auxiliary color for subheadings */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-responsible-gambling-self-exclusion__text-block {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-responsible-gambling-self-exclusion__image-container {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-self-exclusion__content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-responsible-gambling-self-exclusion__steps-list,
.page-responsible-gambling-self-exclusion__advice-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-responsible-gambling-self-exclusion__list-item {
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  border: 1px solid #2E7A4E; /* Border */
}

.page-responsible-gambling-self-exclusion__list-item strong {
  color: #57E38D; /* Glow */
}

.page-responsible-gambling-self-exclusion__contact-btn {
  margin-top: 20px;
}

.page-responsible-gambling-self-exclusion__faq-list {
  margin-top: 30px;
}

.page-responsible-gambling-self-exclusion__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-responsible-gambling-self-exclusion__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B;
}

.page-responsible-gambling-self-exclusion__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-responsible-gambling-self-exclusion__faq-qtext {
  flex-grow: 1;
}

.page-responsible-gambling-self-exclusion__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-responsible-gambling-self-exclusion__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-responsible-gambling-self-exclusion__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-responsible-gambling-self-exclusion__main-title {
    font-size: 2rem;
  }

  .page-responsible-gambling-self-exclusion__hero-description {
    font-size: 1rem;
  }

  .page-responsible-gambling-self-exclusion__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-responsible-gambling-self-exclusion__btn-primary,
  .page-responsible-gambling-self-exclusion__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-responsible-gambling-self-exclusion__content-area {
    padding: 30px 15px;
  }

  .page-responsible-gambling-self-exclusion__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-responsible-gambling-self-exclusion__sub-title {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-responsible-gambling-self-exclusion__text-block,
  .page-responsible-gambling-self-exclusion__list-item,
  .page-responsible-gambling-self-exclusion__faq-answer p {
    font-size: 0.95rem;
  }

  /* Mobile image responsiveness */
  .page-responsible-gambling-self-exclusion img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-responsible-gambling-self-exclusion__image-container,
  .page-responsible-gambling-self-exclusion__hero-image-wrapper,
  .page-responsible-gambling-self-exclusion__content-area,
  .page-responsible-gambling-self-exclusion__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-responsible-gambling-self-exclusion__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }

  .page-responsible-gambling-self-exclusion__faq-answer {
    padding: 0 15px 15px;
  }
}