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

/* Hero Section */
.page-ban-ca__hero-section {
  padding-top: 10px; /* As per fixed header rule */
  padding-bottom: 40px;
  background: var(--background-color, #F5F7FA); /* Ensure light background for text */
}

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

.page-ban-ca__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: var(--text-main, #333333); /* Text color for light background */
}

.page-ban-ca__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: var(--primary-color, #E53935);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-ban-ca__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-main, #333333);
}

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

.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;
  display: block;
  border-radius: 8px;
}

/* General Sections */
.page-ban-ca__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
}

.page-ban-ca__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-color, #E53935);
  text-align: center;
  margin-bottom: 20px;
}

.page-ban-ca__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-main, #333333);
}

/* Light/Dark Background Classes for Contrast */
.page-ban-ca__light-bg {
  background-color: var(--background-color, #F5F7FA);
  color: var(--text-main, #333333);
}

.page-ban-ca__dark-bg {
  background-color: var(--primary-color, #E53935);
  color: #ffffff;
}

.page-ban-ca__dark-bg .page-ban-ca__section-title,
.page-ban-ca__dark-bg .page-ban-ca__description,
.page-ban-ca__dark-bg .page-ban-ca__section-description,
.page-ban-ca__dark-bg .page-ban-ca__guide-title,
.page-ban-ca__dark-bg .page-ban-ca__guide-text,
.page-ban-ca__dark-bg .page-ban-ca__faq-qtext,
.page-ban-ca__dark-bg .page-ban-ca__faq-answer p {
  color: #ffffff;
}

/* Intro Section (Features Grid) */
.page-ban-ca__intro-section {
  padding: 60px 0;
}

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

.page-ban-ca__feature-item {
  background: var(--card-bg, #ffffff);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-ban-ca__feature-item:hover {
  transform: translateY(-5px);
}

.page-ban-ca__icon-box-media {
  width: 240px; /* Fixed size for circular image */
  height: 240px; /* Fixed size for circular image */
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--auxiliary-color, #FF5A4F);
}

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

.page-ban-ca__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color, #E53935);
  margin-bottom: 15px;
}

.page-ban-ca__feature-text {
  font-size: 1rem;
  color: var(--text-main, #333333);
}

/* Gameplay Section (Guide) */
.page-ban-ca__gameplay-section {
  padding: 60px 0;
}

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

.page-ban-ca__guide-step {
  background: rgba(255, 255, 255, 0.15); /* Slightly transparent white on dark background */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-ban-ca__guide-text {
  font-size: 1rem;
  color: #ffffff;
}

.page-ban-ca__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Benefits Section */
.page-ban-ca__benefits-section {
  padding: 60px 0;
}

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

.page-ban-ca__benefit-item {
  background: var(--card-bg, #ffffff);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}