/* style/responsible-gambling-get-help.css */
.page-responsible-gambling-get-help {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A202C; /* Dark background */
}

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

.page-responsible-gambling-get-help__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-responsible-gambling-get-help__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-responsible-gambling-get-help__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-responsible-gambling-get-help__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-responsible-gambling-get-help__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
}

.page-responsible-gambling-get-help__btn--primary:hover {
  background-color: #e6c200;
}

.page-responsible-gambling-get-help__btn--secondary {
  background-color: #4A5568; /* Dark grey button */
  color: #FFD700; /* Gold text on dark grey */
  border: 2px solid #FFD700;
}

.page-responsible-gambling-get-help__btn--secondary:hover {
  background-color: #5f636b;
  color: #FFFFFF;
}

.page-responsible-gambling-get-help__section {
  padding: 80px 0;
  text-align: center;
}

.page-responsible-gambling-get-help__section:nth-of-type(even) {
  background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-responsible-gambling-get-help__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
}

.page-responsible-gambling-get-help__section-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

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

.page-responsible-gambling-get-help__assessment-item,
.page-responsible-gambling-get-help__tool-item {
  background-color: #1A202C; /* Darker background for items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #4A5568;
}

.page-responsible-gambling-get-help__assessment-icon,
.page-responsible-gambling-get-help__tool-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-responsible-gambling-get-help__assessment-item p,
.page-responsible-gambling-get-help__tool-description {
  font-size: 1em;
  color: #E0E0E0;
}

.page-responsible-gambling-get-help__tool-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-responsible-gambling-get-help__callout {
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  margin-top: 40px;
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #FFD700;
}

.page-responsible-gambling-get-help__action-area {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #4A5568;
}

.page-responsible-gambling-get-help__action-area p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-responsible-gambling-get-help__resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-responsible-gambling-get-help__resource-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #4A5568;
}

.page-responsible-gambling-get-help__resource-image {
  width: 100%;
  max-width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-responsible-gambling-get-help__resource-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-responsible-gambling-get-help__resource-description {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-responsible-gambling-get-help__resource-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-responsible-gambling-get-help__resource-link:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-responsible-gambling-get-help__note {
  font-style: italic;
  color: #AAAAAA;
  margin-top: 40px;
  font-size: 0.9em;
}

.page-responsible-gambling-get-help__tip-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: left;
}

.page-responsible-gambling-get-help__tip-list li {
  background-color: #1A202C;
  padding: 15px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 4px solid #FFD700;
}

.page-responsible-gambling-get-help__tip-icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
}

.page-responsible-gambling-get-help__faq-item {
  background-color: #1A202C;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid #4A5568;
}

.page-responsible-gambling-get-help__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-responsible-gambling-get-help__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-responsible-gambling-get-help__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-responsible-gambling-get-help__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  padding-top: 0;
}

.page-responsible-gambling-get-help__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  padding-top: 15px;
}

.page-responsible-gambling-get-help__contact-final {
  background-color: #2D3748;
  padding: 100px 0;
}

@media (max-width: 768px) {
  .page-responsible-gambling-get-help__hero-title {
    font-size: 2.5em;
  }

  .page-responsible-gambling-get-help__hero-subtitle,
  .page-responsible-gambling-get-help__section-description,
  .page-responsible-gambling-get-help__action-area p {
    font-size: 1em;
  }

  .page-responsible-gambling-get-help__section-title {
    font-size: 2em;
  }

  .page-responsible-gambling-get-help__grid {
    grid-template-columns: 1fr;
  }

  .page-responsible-gambling-get-help__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling-get-help__hero-title {
    font-size: 2em;
  }

  .page-responsible-gambling-get-help__section-title {
    font-size: 1.8em;
  }

  .page-responsible-gambling-get-help__tip-list li {
    font-size: 0.95em;
  }
}