/* style/blog-7789bet-registration-faq.css */
/* Base styles for the page, inheriting from shared.css */
.page-blog-7789bet-registration-faq {
  background-color: var(--bg-color, #08160F); /* Fallback to custom bg color if shared.css doesn't define --bg-color */
  color: var(--text-main, #F2FFF6); /* Main text color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-blog-7789bet-registration-faq__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Stack image and content vertically */
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
  background-color: #08160F; /* Deep Green background for hero */
}

.page-blog-7789bet-registration-faq__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Max width for image wrapper */
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-7789bet-registration-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-7789bet-registration-faq__hero-content {
  max-width: 900px;
  width: 100%; /* Ensure width 100% for flex item */
  padding: 0 15px;
  z-index: 1; /* Ensure content is above any background elements */
  color: #F2FFF6;
}

.page-blog-7789bet-registration-faq__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-7789bet-registration-faq__description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #A7D9B8;
  margin-bottom: 30px;
}

/* CTA Button */
.page-blog-7789bet-registration-faq__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-7789bet-registration-faq__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-7789bet-registration-faq__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3rem;
}

/* Content Sections */
.page-blog-7789bet-registration-faq__content-section {
  padding: 60px 20px;
  background-color: #08160F; /* Dark background */
  color: #F2FFF6; /* Light text for dark background */
}

.page-blog-7789bet-registration-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-7789bet-registration-faq__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #F2FFF6;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-7789bet-registration-faq__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #2AD16F; /* Green accent */
  border-radius: 2px;
}

.page-blog-7789bet-registration-faq__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #A7D9B8;
  line-height: 1.7;
}

.page-blog-7789bet-registration-faq__text-block strong {
  color: #F2FFF6;
}

/* Images within content */
.page-blog-7789bet-registration-faq__image-wrapper {
  margin: 30px auto;
  text-align: center;
  max-width: 1000px;
}

.page-blog-7789bet-registration-faq__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

/* FAQ List */
.page-blog-7789bet-registration-faq__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-7789bet-registration-faq__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-7789bet-registration-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker for details summary */
}

.page-blog-7789bet-registration-faq__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit browsers */
}

.page-blog-7789bet-registration-faq__faq-question:hover {
  background-color: #1E3A2A; /* Slightly darker on hover */
}

.page-blog-7789bet-registration-faq__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-blog-7789bet-registration-faq__faq-item[open] .page-blog-7789bet-registration-faq__faq-toggle {
  content: "−"; /* Change to minus when open */
}

.page-blog-7789bet-registration-faq__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
  max-height: 0; /* For JS fallback, will be overridden by native details */
  overflow: hidden; /* For JS fallback */
  transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* For JS fallback */
}

.page-blog-7789bet-registration-faq__faq-item[open] .page-blog-7789bet-registration-faq__faq-answer {
  max-height: 2000px; /* Allows content to expand */
  padding-top: 15px; /* Add padding when open */
}

.page-blog-7789bet-registration-faq__faq-answer p {
  margin-bottom: 15px;
}

.page-blog-7789bet-registration-faq__faq-answer ul,
.page-blog-7789bet-registration-faq__faq-answer ol {
  margin-left: 25px;
  margin-bottom: 15px;
  list-style-type: disc;
}

.page-blog-7789bet-registration-faq__faq-answer ol {
  list-style-type: decimal;
}

.page-blog-7789bet-registration-faq__faq-answer li {
  margin-bottom: 8px;
  color: #A7D9B8;
}

.page-blog-7789bet-registration-faq__faq-answer strong {
  color: #F2FFF6;
}

.page-blog-7789bet-registration-faq__link-button {
  display: inline-block;
  padding: 10px 20px;
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-7789bet-registration-faq__link-button:hover {
  background-color: #13994A;
}

/* Conclusion Section */
.page-blog-7789bet-registration-faq__conclusion-section {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #1E3A2A; /* Divider */
  margin-top: 60px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-7789bet-registration-faq__hero-content {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .page-blog-7789bet-registration-faq__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-7789bet-registration-faq__main-title {
    font-size: 2.2rem;
  }

  .page-blog-7789bet-registration-faq__description {
    font-size: 1rem;
  }

  .page-blog-7789bet-registration-faq__cta-button,
  .page-blog-7789bet-registration-faq__link-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
    margin: 10px auto;
  }

  .page-blog-7789bet-registration-faq__cta-button--large {
    max-width: 300px !important;
    padding: 15px 25px;
    font-size: 1.1rem;
  }

  .page-blog-7789bet-registration-faq__content-section {
    padding: 40px 15px;
  }

  .page-blog-7789bet-registration-faq__container {
    padding: 0;
  }

  .page-blog-7789bet-registration-faq__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-7789bet-registration-faq__text-block {
    font-size: 0.95rem;
  }

  .page-blog-7789bet-registration-faq__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-7789bet-registration-faq__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }

  /* Images responsive */
  .page-blog-7789bet-registration-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  
  .page-blog-7789bet-registration-faq__hero-image {
    min-width: unset !important; /* Allow hero image to scale down more */
    min-height: unset !important;
  }

  .page-blog-7789bet-registration-faq__image-wrapper,
  .page-blog-7789bet-registration-faq__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-7789bet-registration-faq__content-area,
  .page-blog-7789bet-registration-faq__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}