/* style/responsible-gaming-professional-help-organizations.css */
.page-responsible-gaming-professional-help-organizations {
  font-family: 'Arial', sans-serif;
  color: #1A2E40;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-responsible-gaming-professional-help-organizations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-responsible-gaming-professional-help-organizations__hero {
  background: linear-gradient(135deg, #1A2E40 0%, #3a506b 100%); /* Dark Blue to slightly lighter blue */
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.page-responsible-gaming-professional-help-organizations__hero-content {
  max-width: 600px;
  text-align: left;
  z-index: 1;
}

.page-responsible-gaming-professional-help-organizations__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  line-height: 1.2;
}

.page-responsible-gaming-professional-help-organizations__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-responsible-gaming-professional-help-organizations__hero-image {
  flex-shrink: 0;
  width: 450px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-responsible-gaming-professional-help-organizations__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-responsible-gaming-professional-help-organizations__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E40;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-responsible-gaming-professional-help-organizations__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-responsible-gaming-professional-help-organizations__button--secondary {
  background-color: #1A2E40;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-responsible-gaming-professional-help-organizations__button--secondary:hover {
  background-color: #0d1a26;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-responsible-gaming-professional-help-organizations__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-responsible-gaming-professional-help-organizations__section:last-of-type {
  border-bottom: none;
}

.page-responsible-gaming-professional-help-organizations__section h2 {
  font-size: 2.5em;
  color: #1A2E40;
  margin-bottom: 30px;
  text-align: center;
}

.page-responsible-gaming-professional-help-organizations__section h3 {
  font-size: 1.8em;
  color: #3a506b;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-responsible-gaming-professional-help-organizations__section p {
  margin-bottom: 15px;
  color: #333;
}

.page-responsible-gaming-professional-help-organizations__section ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-responsible-gaming-professional-help-organizations__section ul li {
  margin-bottom: 10px;
  color: #333;
}

.page-responsible-gaming-professional-help-organizations__image--inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-responsible-gaming-professional-help-organizations__org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-responsible-gaming-professional-help-organizations__org-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-responsible-gaming-professional-help-organizations__org-card:hover {
  transform: translateY(-5px);
}

.page-responsible-gaming-professional-help-organizations__org-card h3 {
  color: #1A2E40;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-responsible-gaming-professional-help-organizations__org-card p {
  font-size: 0.95em;
  color: #555;
  flex-grow: 1;
}

.page-responsible-gaming-professional-help-organizations__org-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 20px;
}

.page-responsible-gaming-professional-help-organizations__org-card ul li {
  margin-bottom: 8px;
  color: #444;
  font-size: 0.9em;
}

.page-responsible-gaming-professional-help-organizations__org-card img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-responsible-gaming-professional-help-organizations__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-responsible-gaming-professional-help-organizations__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-responsible-gaming-professional-help-organizations__cta {
  background-color: #1A2E40;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-responsible-gaming-professional-help-organizations__cta h2 {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-responsible-gaming-professional-help-organizations__cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-responsible-gaming-professional-help-organizations__cta .page-responsible-gaming-professional-help-organizations__button {
  margin: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-responsible-gaming-professional-help-organizations__hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    gap: 30px;
  }

  .page-responsible-gaming-professional-help-organizations__hero-content {
    max-width: 100%;
  }

  .page-responsible-gaming-professional-help-organizations__hero h1 {
    font-size: 2.5em;
  }

  .page-responsible-gaming-professional-help-organizations__hero p {
    font-size: 1em;
  }

  .page-responsible-gaming-professional-help-organizations__hero-image {
    width: 80%;
    height: 250px;
  }

  .page-responsible-gaming-professional-help-organizations__section h2 {
    font-size: 2em;
  }

  .page-responsible-gaming-professional-help-organizations__section h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-responsible-gaming-professional-help-organizations__hero {
    padding: 40px 15px;
  }

  .page-responsible-gaming-professional-help-organizations__hero h1 {
    font-size: 2em;
  }

  .page-responsible-gaming-professional-help-organizations__hero-image {
    width: 90%;
    height: 200px;
  }

  .page-responsible-gaming-professional-help-organizations__org-grid {
    grid-template-columns: 1fr;
  }

  .page-responsible-gaming-professional-help-organizations__cta h2 {
    font-size: 2em;
  }

  .page-responsible-gaming-professional-help-organizations__cta .page-responsible-gaming-professional-help-organizations__button {
    margin: 10px 0;
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-responsible-gaming-professional-help-organizations__hero h1 {
    font-size: 1.8em;
  }
  .page-responsible-gaming-professional-help-organizations__section h2 {
    font-size: 1.8em;
  }
  .page-responsible-gaming-professional-help-organizations__section h3 {
    font-size: 1.3em;
  }
  .page-responsible-gaming-professional-help-organizations__hero-image {
    width: 100%;
    height: 180px;
  }
  .page-responsible-gaming-professional-help-organizations__cta h2 {
    font-size: 1.8em;
  }
}