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

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

.page-responsible-gambling-self-exclusion .hero-section {
  background: linear-gradient(135deg, #003366 0%, #0a4d8c 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-responsible-gambling-self-exclusion .hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1); /* Golden accent */
  border-radius: 50%;
  filter: blur(50px);
  animation: floatEffect 10s infinite ease-in-out;
}

.page-responsible-gambling-self-exclusion .hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 215, 0, 0.15); /* Golden accent */
  border-radius: 50%;
  filter: blur(40px);
  animation: floatEffect 12s infinite reverse ease-in-out;
}

@keyframes floatEffect {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 20px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

.page-responsible-gambling-self-exclusion .hero-section h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-self-exclusion .hero-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-responsible-gambling-self-exclusion .hero-buttons .btn {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-responsible-gambling-self-exclusion .hero-buttons .btn-primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Deep Blue */
}

.page-responsible-gambling-self-exclusion .hero-buttons .btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-self-exclusion .hero-buttons .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-responsible-gambling-self-exclusion .hero-buttons .btn-secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-self-exclusion .content-block {
  padding: 60px 0;
}

.page-responsible-gambling-self-exclusion .content-block h2 {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-responsible-gambling-self-exclusion .content-block h3 {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-responsible-gambling-self-exclusion .content-block p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #444;
}

.page-responsible-gambling-self-exclusion .content-block ul {
  list-style: none;
  padding-left: 0;
}

.page-responsible-gambling-self-exclusion .content-block ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

.page-responsible-gambling-self-exclusion .content-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
}

.page-responsible-gambling-self-exclusion .introduction-section .text-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.page-responsible-gambling-self-exclusion .introduction-section .text-content > div, 
.page-responsible-gambling-self-exclusion .introduction-section .text-content > ul {
  flex: 1;
  min-width: 300px;
}

.page-responsible-gambling-self-exclusion .image-right {
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-responsible-gambling-self-exclusion .image-left {
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.page-responsible-gambling-self-exclusion .introduction-section::after, 
.page-responsible-gambling-self-exclusion .commitment-section::after {
  content: '';
  display: table;
  clear: both;
}

.page-responsible-gambling-self-exclusion .bg-light-blue {
  background-color: #f0f4f8; /* A very light blue tint for contrast */
}

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

.page-responsible-gambling-self-exclusion .step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-self-exclusion .step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-responsible-gambling-self-exclusion .step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

.page-responsible-gambling-self-exclusion .step-item h3 {
  color: #003366;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-responsible-gambling-self-exclusion .step-item p {
  font-size: 1em;
  color: #555;
}

.page-responsible-gambling-self-exclusion .note {
  background-color: #fff3cd; /* Light yellow for warning/note */
  border-left: 5px solid #ffc107;
  padding: 20px;
  margin-top: 40px;
  border-radius: 8px;
  color: #664d03;
  font-size: 1em;
}

.page-responsible-gambling-self-exclusion .tools-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-responsible-gambling-self-exclusion .tools-list li {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  list-style: none;
  position: relative;
  padding-left: 0; /* Override default list style */
}

.page-responsible-gambling-self-exclusion .tools-list li::before {
  content: none;
}

.page-responsible-gambling-self-exclusion .tool-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.2));
}

.page-responsible-gambling-self-exclusion .tools-list h3 {
  color: #003366;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-responsible-gambling-self-exclusion .tools-list p {
  font-size: 1em;
  color: #555;
}

.page-responsible-gambling-self-exclusion .faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling-self-exclusion .faq-item h3 {
  margin: 0;
  padding: 20px;
  font-size: 1.4em;
  color: #003366;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-responsible-gambling-self-exclusion .faq-item h3:hover {
  background-color: #f0f0f0;
}

.page-responsible-gambling-self-exclusion .faq-item h3::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-responsible-gambling-self-exclusion .faq-item.active h3::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-responsible-gambling-self-exclusion .faq-item p {
  padding: 0 20px 20px;
  margin: 0;
  color: #555;
  font-size: 1.05em;
  display: none; /* Hidden by default */
}

.page-responsible-gambling-self-exclusion .faq-item.active p {
  display: block;
}

.page-responsible-gambling-self-exclusion .btn-contact {
  background-color: #003366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.page-responsible-gambling-self-exclusion .btn-contact:hover {
  background-color: #0a4d8c;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-self-exclusion .cta-bottom {
  text-align: center;
  background-color: #003366;
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  margin-top: 60px;
}

.page-responsible-gambling-self-exclusion .cta-bottom p {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #fff;
}

.page-responsible-gambling-self-exclusion .cta-bottom .btn-primary {
  background-color: #FFD700;
  color: #003366;
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-responsible-gambling-self-exclusion .cta-bottom .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-responsible-gambling-self-exclusion .hero-section h1 {
    font-size: 2.8em;
  }
  .page-responsible-gambling-self-exclusion .content-block h2 {
    font-size: 2em;
  }
  .page-responsible-gambling-self-exclusion .image-right, 
  .page-responsible-gambling-self-exclusion .image-left {
    float: none;
    margin: 20px auto;
    max-width: 80%;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-responsible-gambling-self-exclusion .hero-section {
    padding: 60px 0;
  }
  .page-responsible-gambling-self-exclusion .hero-section h1 {
    font-size: 2.2em;
  }
  .page-responsible-gambling-self-exclusion .hero-section p {
    font-size: 1em;
  }
  .page-responsible-gambling-self-exclusion .hero-buttons .btn {
    padding: 12px 25px;
    margin: 5px;
  }
  .page-responsible-gambling-self-exclusion .content-block {
    padding: 40px 0;
  }
  .page-responsible-gambling-self-exclusion .content-block h3 {
    font-size: 1.5em;
  }
  .page-responsible-gambling-self-exclusion .steps-grid, 
  .page-responsible-gambling-self-exclusion .tools-list {
    grid-template-columns: 1fr;
  }
  .page-responsible-gambling-self-exclusion .faq-item h3 {
    font-size: 1.2em;
  }
  .page-responsible-gambling-self-exclusion .cta-bottom p {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling-self-exclusion .hero-section h1 {
    font-size: 1.8em;
  }
  .page-responsible-gambling-self-exclusion .hero-buttons .btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  .page-responsible-gambling-self-exclusion .content-block h2 {
    font-size: 1.8em;
  }
  .page-responsible-gambling-self-exclusion .content-block h3 {
    font-size: 1.3em;
  }
  .page-responsible-gambling-self-exclusion .note {
    padding: 15px;
  }
  .page-responsible-gambling-self-exclusion .cta-bottom {
    padding: 30px;
  }
  .page-responsible-gambling-self-exclusion .cta-bottom p {
    font-size: 1em;
  }
  .page-responsible-gambling-self-exclusion .cta-bottom .btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }
}