/* style/resources-online-betting-safety-guide.css */
:root {
  --primary-color: #0A2239;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-medium: #e0e0e0;
}

.page-resources-online-betting-safety-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.page-resources-online-betting-safety-guide .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-online-betting-safety-guide .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.page-resources-online-betting-safety-guide .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-online-betting-safety-guide .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-online-betting-safety-guide .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-online-betting-safety-guide .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-online-betting-safety-guide .hero-content p {
  font-size: 1.25em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources-online-betting-safety-guide .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-online-betting-safety-guide .cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.page-resources-online-betting-safety-guide .content-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--bg-medium);
}

.page-resources-online-betting-safety-guide .content-section:last-of-type {
  border-bottom: none;
}

.page-resources-online-betting-safety-guide .content-section h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-online-betting-safety-guide .content-section h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-online-betting-safety-guide .content-section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

.page-resources-online-betting-safety-guide .content-section ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-online-betting-safety-guide .content-section ul li {
  margin-bottom: 10px;
}

.page-resources-online-betting-safety-guide .image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-resources-online-betting-safety-guide .image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Specific section styling */
.page-resources-online-betting-safety-guide .section-intro {
  background-color: #fefefe;
}

.page-resources-online-betting-safety-guide .section-reputable {
  background-color: var(--bg-light);
}

.page-resources-online-betting-safety-guide .section-account-security {
  background-color: #fefefe;
}

.page-resources-online-betting-safety-guide .section-transactions {
  background-color: var(--bg-light);
}

.page-resources-online-betting-safety-guide .section-responsible-gambling {
  background-color: #fefefe;
}

.page-resources-online-betting-safety-guide .section-terms {
  background-color: var(--bg-light);
}

.page-resources-online-betting-safety-guide .section-scams {
  background-color: #fefefe;
}

.page-resources-online-betting-safety-guide .section-customer-support {
  background-color: var(--bg-light);
  text-align: center;
}

.page-resources-online-betting-safety-guide .contact-button {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-resources-online-betting-safety-guide .contact-button:hover {
  background-color: #081a2e;
}

.page-resources-online-betting-safety-guide .section-conclusion {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.page-resources-online-betting-safety-guide .section-conclusion h2 {
  color: var(--secondary-color);
}

.page-resources-online-betting-safety-guide .section-conclusion p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-resources-online-betting-safety-guide .final-cta {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-online-betting-safety-guide .final-cta:hover {
  background-color: #e6c200;
}

/* FAQ Section */
.page-resources-online-betting-safety-guide .section-faq {
  padding: 80px 0;
  background-color: #fefefe;
}

.page-resources-online-betting-safety-guide .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-online-betting-safety-guide .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--bg-medium);
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-online-betting-safety-guide .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-online-betting-safety-guide .faq-question:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.page-resources-online-betting-safety-guide .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

.page-resources-online-betting-safety-guide .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-resources-online-betting-safety-guide .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-resources-online-betting-safety-guide .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: var(--bg-light);
}

.page-resources-online-betting-safety-guide .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid var(--bg-medium);
}

.page-resources-online-betting-safety-guide .faq-answer p {
  margin: 0;
  font-size: 1.05em;
  color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-online-betting-safety-guide .hero-content h1 {
    font-size: 3em;
  }
  .page-resources-online-betting-safety-guide .hero-content p {
    font-size: 1.15em;
  }
  .page-resources-online-betting-safety-guide .content-section h2 {
    font-size: 2em;
  }
  .page-resources-online-betting-safety-guide .content-section h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-online-betting-safety-guide .hero-section {
    padding: 40px 15px;
  }
  .page-resources-online-betting-safety-guide .hero-image {
    margin-bottom: 20px;
  }
  .page-resources-online-betting-safety-guide .hero-image img {
    border-radius: 4px;
  }
  .page-resources-online-betting-safety-guide .hero-content h1 {
    font-size: 2.2em;
  }
  .page-resources-online-betting-safety-guide .hero-content p {
    font-size: 1em;
    margin: 0 auto 20px auto;
  }
  .page-resources-online-betting-safety-guide .cta-button {
    padding: 12px 30px;
    font-size: 1em;
    margin-top: 15px;
  }
  .page-resources-online-betting-safety-guide .content-section {
    padding: 50px 0;
  }
  .page-resources-online-betting-safety-guide .content-section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-online-betting-safety-guide .content-section h3 {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-resources-online-betting-safety-guide .content-section p,
  .page-resources-online-betting-safety-guide .content-section ul li {
    font-size: 0.95em;
  }
  .page-resources-online-betting-safety-guide .faq-question {
    padding: 15px 20px;
  }
  .page-resources-online-betting-safety-guide .faq-question h3 {
    font-size: 1.1em;
  }
  .page-resources-online-betting-safety-guide .faq-toggle {
    font-size: 20px;
  }
  .page-resources-online-betting-safety-guide .faq-answer {
    padding: 0 20px;
  }
  .page-resources-online-betting-safety-guide .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-online-betting-safety-guide .hero-content h1 {
    font-size: 1.8em;
  }
  .page-resources-online-betting-safety-guide .hero-content p {
    font-size: 0.9em;
  }
  .page-resources-online-betting-safety-guide .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-resources-online-betting-safety-guide .content-section h2 {
    font-size: 1.6em;
  }
  .page-resources-online-betting-safety-guide .content-section h3 {
    font-size: 1.2em;
  }
  .page-resources-online-betting-safety-guide .content-section p,
  .page-resources-online-betting-safety-guide .content-section ul li {
    font-size: 0.9em;
  }
  .page-resources-online-betting-safety-guide .faq-question h3 {
    font-size: 1em;
  }
  .page-resources-online-betting-safety-guide .faq-toggle {
    font-size: 18px;
  }
}