/* style/responsible-gambling-awareness.css */
.page-responsible-gambling-awareness {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-responsible-gambling-awareness__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #3f479d 100%); /* Adjusted gradient for better contrast */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gambling-awareness__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFC107; /* Highlight with accent color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-responsible-gambling-awareness__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}

.page-responsible-gambling-awareness__hero-button {
  display: inline-block;
  background-color: #FFC107;
  color: #1A237E;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-awareness__hero-button:hover {
  background-color: #e5ac00;
  transform: translateY(-3px);
}

.page-responsible-gambling-awareness__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

.page-responsible-gambling-awareness__section-title {
  font-size: 2.5em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-responsible-gambling-awareness__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFC107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-responsible-gambling-awareness__what-is p,
.page-responsible-gambling-awareness__self-assessment p,
.page-responsible-gambling-awareness__seek-help p,
.page-responsible-gambling-awareness__nn88-commitment p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.page-responsible-gambling-awareness__image {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-awareness__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-responsible-gambling-awareness__list li {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #444;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling-awareness__list li::before {
  content: '✔';
  color: #1A237E;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-responsible-gambling-awareness__list--tips li::before {
  content: '💡';
  color: #FFC107;
}

.page-responsible-gambling-awareness__note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  color: #666;
  font-size: 1.05em;
}

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

.page-responsible-gambling-awareness__grid-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 5px solid #1A237E;
}

.page-responsible-gambling-awareness__grid-item:hover {
  transform: translateY(-5px);
}

.page-responsible-gambling-awareness__grid-item h3 {
  color: #1A237E;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-responsible-gambling-awareness__grid-item p {
  color: #666;
  font-size: 1em;
  line-height: 1.7;
}

.page-responsible-gambling-awareness__action-text {
  text-align: center;
  font-size: 1.2em;
  color: #1A237E;
  margin-top: 30px;
  font-weight: bold;
}

.page-responsible-gambling-awareness__button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  background-color: #1A237E;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-awareness__button:hover {
  background-color: #2e3b8a;
  transform: translateY(-3px);
}

.page-responsible-gambling-awareness__button--primary {
  background-color: #FFC107;
  color: #1A237E;
}

.page-responsible-gambling-awareness__button--primary:hover {
  background-color: #e5ac00;
}

@media (max-width: 768px) {
  .page-responsible-gambling-awareness__hero-title {
    font-size: 2.5em;
  }
  .page-responsible-gambling-awareness__hero-subtitle {
    font-size: 1.1em;
  }
  .page-responsible-gambling-awareness__section-title {
    font-size: 2em;
  }
  .page-responsible-gambling-awareness__grid {
    grid-template-columns: 1fr;
  }
  .page-responsible-gambling-awareness__image {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling-awareness__hero-title {
    font-size: 2em;
  }
  .page-responsible-gambling-awareness__hero-subtitle {
    font-size: 1em;
  }
  .page-responsible-gambling-awareness__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-responsible-gambling-awareness__section-title {
    font-size: 1.8em;
  }
  .page-responsible-gambling-awareness__grid-item {
    padding: 20px;
  }
  .page-responsible-gambling-awareness__list li {
    padding: 12px 15px;
    font-size: 0.95em;
  }
}