.page-ban-ca {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #F5F7FA; /* Custom background color */
}

.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Brand gradient background */
  color: #ffffff;
}

.page-ban-ca__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px;
  gap: 24px;
}

.page-ban-ca__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-ban-ca__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-ban-ca__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-ban-ca__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-ban-ca__btn-primary:hover {
  opacity: 0.9;
}

.page-ban-ca__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
}

.page-ban-ca__btn-secondary:hover {
  background: #f0f0f0;
}

.page-ban-ca__hero-image {
  flex: 1 1 45%;
  text-align: center;
  min-width: 300px;
}

.page-ban-ca__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.page-ban-ca__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
}

.page-ban-ca__intro-section {
  background-color: #FFFFFF; /* Card BG */
  color: #333333;
}

.page-ban-ca__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-ban-ca__dark-bg {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
}

.page-ban-ca__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #E53935;
}

.page-ban-ca__section-title--white {
  color: #ffffff;
}

.page-ban-ca__text-block {
  font-size: 1em;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__text-block--white {
  color: #ffffff;
}

.page-ban-ca__highlight {
  font-weight: bold;
  color: #E53935;
}

.page-ban-ca__dark-bg .page-ban-ca__highlight {
  color: #ffffff;
}

.page-ban-ca__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-ban-ca__feature-item {
  background: #F5F7FA;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-ban-ca__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure circular shape */
  display: block;
}

.page-ban-ca__feature-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #E53935;
}

.page-ban-ca__feature-description {
  font-size: 0.95em;
  color: #333333;
}

.page-ban-ca__how-to-play-section {
  padding: 60px 0;
}

.page-ban-ca__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-ban-ca__step-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
}

.page-ban-ca__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__step-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-ban-ca__step-description {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-ban-ca__cta-buttons--center {
  justify-content: center;
  margin-top: 40px;
}

.page-ban-ca__tips-section {
  padding: 60px 0;
}

.page-ban-ca__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-ban-ca__tip-item {
  background: #F5F7FA;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 25px;
}

.page-ban-ca__tip-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #E53935;
}

.page-ban-ca__tip-description {
  font-size: 0.95em;
  color: #333333;
}

.page-ban-ca__why-choose-us-section {
  padding: 60px 0;
}

.page-ban-ca__why-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-ban-ca__why-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #ffffff;
}

.page-ban-ca__why-icon {
  font-size: 1.5em;
  color: #FFD700; /* Gold-like color for emphasis */
  line-height: 1;
}

.page-ban-ca__why-description {
  font-size: 1em;
  color: #ffffff;
}

.page-ban-ca__link--white {
  color: #ffffff;
  text-decoration: underline;
}

.page-ban-ca__link--white:hover {
  color: #f0f0f0;
}

.page-ban-ca__faq-section {
  padding: 60px 0;
}

.page-ban-ca__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__faq-item {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.1em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #f9f9f9;
  list-style: none; /* For details/summary */
}

.page-ban-ca__faq-item summary::-webkit-details-marker, 
.page-ban-ca__faq-item summary::marker {
  display: none;
}

.page-ban-ca__faq-qtext {
  flex-grow: 1;
}

.page-ban-ca__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #E53935;
}

.page-ban-ca__faq-answer {
  padding: 0 20px 15px;
  font-size: 0.95em;
  color: #555555;
  line-height: 1.5;
}

.page-ban-ca__faq-answer p {
  margin-bottom: 0;
}

.page-ban-ca img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .page-ban-ca__hero-container {
    flex-direction: column;
    text-align: center;
  }
  .page-ban-ca__hero-content,
  .page-ban-ca__hero-image {
    flex: 1 1 100%;
  }
  .page-ban-ca__cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }
  .page-ban-ca__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-ban-ca__hero-description {
    font-size: 1em;
  }
  .page-ban-ca__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-ban-ca__container {
    padding: 30px 15px;
  }
  .page-ban-ca__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 20px;
  }
  .page-ban-ca__text-block {
    font-size: 0.9em;
    margin-bottom: 20px;
  }
  .page-ban-ca__features-grid,
  .page-ban-ca__steps-grid,
  .page-ban-ca__tips-grid,
  .page-ban-ca__why-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__feature-item {
    padding: 20px;
  }
  .page-ban-ca__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
  }
  .page-ban-ca__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page-ban-ca__step-item {
    padding: 20px;
  }
  .page-ban-ca__tip-item {
    padding: 20px;
  }
  .page-ban-ca__why-item {
    gap: 10px;
  }
  .page-ban-ca__faq-question {
    padding: 12px 15px;
    font-size: 1em;
  }
  .page-ban-ca__faq-answer {
    padding: 0 15px 12px;
    font-size: 0.9em;
  }
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-ban-ca__hero-image,
  .page-ban-ca__intro-section,
  .page-ban-ca__how-to-play-section,
  .page-ban-ca__tips-section,
  .page-ban-ca__why-choose-us-section,
  .page-ban-ca__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-ban-ca__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}