/* style/responsible-gambling.css */
:root {
  --primary-color: #1A2B42;
  --secondary-color: #FFD700;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #121e2e;
  --border-color: #e0e0e0;
}

.page-responsible-gambling {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-light);
}

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

.page-responsible-gambling .section-padded {
  padding: 60px 0;
}

.page-responsible-gambling .section-bg-light {
  background-color: #ffffff;
}

.page-responsible-gambling .section-bg-dark {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-responsible-gambling .section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-responsible-gambling .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-responsible-gambling .section-title-light {
  font-size: 36px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-responsible-gambling .section-title-light::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-responsible-gambling h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-responsible-gambling .section-bg-dark h3 {
  color: var(--secondary-color);
}

.page-responsible-gambling p {
  margin-bottom: 15px;
  font-size: 17px;
}

.page-responsible-gambling .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: var(--background-dark);
  color: var(--text-color-light);
}

.page-responsible-gambling .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-responsible-gambling .hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling .hero-content h1 {
  font-size: 48px;
  color: var(--secondary-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.page-responsible-gambling .hero-content p {
  font-size: 19px;
  max-width: 800px;
  margin: 0 auto 35px auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-responsible-gambling .cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling .cta-button:hover {
  background: #ffc400;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling .content-block {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-responsible-gambling .section-bg-light .content-block {
  background-color: var(--background-light);
}

.page-responsible-gambling .section-bg-dark .content-block {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-responsible-gambling .section-bg-dark .content-block h3 {
  color: var(--secondary-color);
}

.page-responsible-gambling .list-style-check {
  list-style: none;
  padding: 0;
}

.page-responsible-gambling .list-style-check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 17px;
}

.page-responsible-gambling .list-style-check li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #28a745; /* Green checkmark */
  font-weight: bold;
}

.page-responsible-gambling .list-style-bullet {
  list-style: disc;
  padding-left: 25px;
}

.page-responsible-gambling .list-style-bullet li {
  margin-bottom: 8px;
  font-size: 17px;
}

.page-responsible-gambling .list-style-numbered {
  list-style: decimal;
  padding-left: 25px;
}

.page-responsible-gambling .list-style-numbered li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-responsible-gambling .content-image {
  width: 100%;
  height: auto;
  max-width: 700px;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

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

.page-responsible-gambling .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-responsible-gambling .feature-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.page-responsible-gambling .feature-item h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-responsible-gambling .feature-item p {
  font-size: 16px;
  color: var(--text-color-dark);
}

.page-responsible-gambling .text-link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-responsible-gambling .text-link:hover {
  color: var(--secondary-color);
}

.page-responsible-gambling .section-bg-dark .text-link {
  color: var(--secondary-color);
}

.page-responsible-gambling .section-bg-dark .text-link:hover {
  color: #ffc400;
}

.page-responsible-gambling .action-text {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 500;
}

/* FAQ Styles */
.page-responsible-gambling .faq-list {
  margin-top: 40px;
}

.page-responsible-gambling .faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-responsible-gambling .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-responsible-gambling .section-bg-dark .faq-question {
  background: var(--background-dark);
  border-color: #3e4c60;
  color: var(--text-color-light);
}

.page-responsible-gambling .faq-question:hover {
  background: #f5f5f5;
  border-color: var(--secondary-color);
}

.page-responsible-gambling .section-bg-dark .faq-question:hover {
  background: #253952;
  border-color: var(--secondary-color);
}

.page-responsible-gambling .faq-question h3 {
  margin: 0;
  font-size: 20px;
  color: var(--primary-color);
}

.page-responsible-gambling .section-bg-dark .faq-question h3 {
  color: var(--text-color-light);
}

.page-responsible-gambling .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-responsible-gambling .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-responsible-gambling .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.page-responsible-gambling .section-bg-dark .faq-answer {
  background: #1c2f47;
  border-color: #3e4c60;
  color: rgba(255, 255, 255, 0.8);
}

.page-responsible-gambling .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
}

.page-responsible-gambling .section-cta {
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 80px 20px;
}

.page-responsible-gambling .section-cta h2 {
  color: var(--secondary-color);
}

.page-responsible-gambling .section-cta p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-responsible-gambling .cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-responsible-gambling .cta-group .primary-button {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-responsible-gambling .cta-group .primary-button:hover {
  background: #ffc400;
}

.page-responsible-gambling .cta-group .secondary-button {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  box-shadow: none;
}

.page-responsible-gambling .cta-group .secondary-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-responsible-gambling .hero-content h1 {
    font-size: 40px;
  }
  .page-responsible-gambling .section-title, .page-responsible-gambling .section-title-light {
    font-size: 30px;
  }
  .page-responsible-gambling h3 {
    font-size: 20px;
  }
  .page-responsible-gambling .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-responsible-gambling .hero-section {
    padding: 60px 15px;
  }
  .page-responsible-gambling .hero-image {
    margin-bottom: 30px;
  }
  .page-responsible-gambling .hero-content h1 {
    font-size: 32px;
  }
  .page-responsible-gambling .hero-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-responsible-gambling .cta-button {
    padding: 12px 30px;
    font-size: 17px;
  }
  .page-responsible-gambling .section-padded {
    padding: 40px 0;
  }
  .page-responsible-gambling .section-title, .page-responsible-gambling .section-title-light {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-responsible-gambling h3 {
    font-size: 18px;
  }
  .page-responsible-gambling p, .page-responsible-gambling li {
    font-size: 15px;
  }
  .page-responsible-gambling .content-block {
    padding: 20px;
    margin-bottom: 20px;
  }
  .page-responsible-gambling .feature-grid {
    gap: 20px;
  }
  .page-responsible-gambling .feature-item {
    padding: 25px;
  }
  .page-responsible-gambling .feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
  .page-responsible-gambling .feature-item h3 {
    font-size: 20px;
  }
  .page-responsible-gambling .faq-question {
    padding: 15px 20px;
  }
  .page-responsible-gambling .faq-question h3 {
    font-size: 18px;
  }
  .page-responsible-gambling .faq-answer {
    padding: 15px 20px;
  }
  .page-responsible-gambling .section-cta {
    padding: 60px 15px;
  }
  .page-responsible-gambling .section-cta p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-responsible-gambling .cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-responsible-gambling .hero-content h1 {
    font-size: 28px;
  }
  .page-responsible-gambling .section-title, .page-responsible-gambling .section-title-light {
    font-size: 22px;
  }
  .page-responsible-gambling .cta-button {
    width: 100%;
    max-width: 280px;
  }
  .page-responsible-gambling .feature-grid {
    grid-template-columns: 1fr;
  }
  .page-responsible-gambling .faq-question h3 {
    font-size: 16px;
  }
}