.page-ban-ca {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-ban-ca__dark-bg {
  background: var(--color-background-custom, #08160F);
  color: var(--color-text-main, #F2FFF6);
}

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

.page-ban-ca__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 60px 16px;
  box-sizing: border-box;
}

/* HERO Section */
.page-ban-ca__hero-section {
  padding-top: 10px; /* Rely on body padding-top for header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%);
}

.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: 40px;
}

.page-ban-ca__hero-content {
  flex: 1 1 45%;
  max-width: 550px;
  color: var(--color-text-main, #F2FFF6);
}

.page-ban-ca__hero-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-gold, #F2C14E);
}

.page-ban-ca__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--color-text-secondary, #A7D9B8);
}

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

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

.page-ban-ca__hero-main-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--color-text-main, #F2FFF6);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-ban-ca__btn-secondary {
  background: transparent;
  color: var(--color-glow, #57E38D);
  border: 2px solid var(--color-glow, #57E38D);
}

.page-ban-ca__btn-secondary:hover {
  background: var(--color-glow, #57E38D);
  color: #08160F;
  transform: translateY(-2px);
}

/* Intro Section */
.page-ban-ca__intro-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f8f9fa;
  color: #333333;
}

.page-ban-ca__intro-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-deep-green, #0A4B2C);
}

.page-ban-ca__intro-description {
  font-size: 1.05em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

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

.page-ban-ca__feature-item {
  text-align: center;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-ban-ca__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-border, #2E7A4E);
  box-shadow: 0 0 0 8px rgba(46, 122, 78, 0.3);
}

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

.page-ban-ca__feature-heading {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-deep-green, #0A4B2C);
}

.page-ban-ca__feature-text {
  font-size: 0.95em;
  color: #666666;
}

/* Guide Section */
.page-ban-ca__guide-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--color-background-custom, #08160F);
  color: var(--color-text-main, #F2FFF6);
}

.page-ban-ca__guide-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-gold, #F2C14E);
}

.page-ban-ca__guide-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-ban-ca__guide-text-block {
  flex: 1 1 50%;
  max-width: 600px;
}

.page-ban-ca__guide-text-block p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--color-text-secondary, #A7D9B8);
}

.page-ban-ca__guide-steps {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.05em;
  color: var(--color-text-secondary, #A7D9B8);
}

.page-ban-ca__guide-steps li {
  margin-bottom: 15px;
}

.page-ban-ca__guide-steps strong {
  color: var(--color-text-main, #F2FFF6);
}

.page-ban-ca__guide-image {
  flex: 1 1 40%;
  text-align: center;
  max-width: 500px;
}

.page-ban-ca__guide-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-ban-ca__guide-cta {
  margin-top: 20px;
}

/* Features Section */
.page-ban-ca__features-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f8f9fa;
  color: #333333;
}

.page-ban-ca__features-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-deep-green, #0A4B2C);
}

.page-ban-ca__features-description {
  font-size: 1.05em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

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

.page-ban-ca__features-list-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-ban-ca__features-list-heading {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-deep-green, #0A4B2C);
}

.page-ban-ca__features-list-item p {
  font-size: 0.95em;
  color: #666666;
}

/* Promo Section */
.page-ban-ca__promo-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--color-background-custom, #08160F);
  color: var(--color-text-main, #F2FFF6);
}

.page-ban-ca__promo-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-gold, #F2C14E);
}

.page-ban-ca__promo-description {
  font-size: 1.05em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--color-text-secondary, #A7D9B8);
}

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

.page-ban-ca__promo-card {
  background: var(--color-card-bg, #11271B);
  color: var(--color-text-main, #F2FFF6);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-ban-ca__promo-card:hover {
  transform: translateY(-5px);
}

.page-ban-ca__promo-card-img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-ban-ca__promo-card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin: 20px 20px 10px;
  color: var(--color-gold, #F2C14E);
}

.page-ban-ca__promo-card-text {
  font-size: 0.95em;
  margin: 0 20px 20px;
  flex-grow: 1;
  color: var(--color-text-secondary, #A7D9B8);
}

.page-ban-ca__promo-card .page-ban-ca__btn-primary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

.page-ban-ca__all-promo-cta {
  text-align: center;
}

/* FAQ Section */
.page-ban-ca__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f8f9fa;
  color: #333333;
}

.page-ban-ca__faq-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-deep-green, #0A4B2C);
}

.page-ban-ca__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-ban-ca__faq-item {
  background: #ffffff;
  border: 1px solid var(--color-divider, #1E3A2A);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-deep-green, #0A4B2C);
  background: #ffffff;
  list-style: none;
  user-select: none;
}

.page-ban-ca__faq-question::-webkit-details-marker {
  display: none;
}

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

.page-ban-ca__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--color-glow, #57E38D);
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-toggle {
  content: '−';
}

.page-ban-ca__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #555555;
}

/* CTA Section */
.page-ban-ca__cta-section {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
  background: linear-gradient(180deg, #08160F 0%, #0A4B2C 100%);
  color: var(--color-text-main, #F2FFF6);
}

.page-ban-ca__cta-content {
  max-width: 800px;
}

.page-ban-ca__cta-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-gold, #F2C14E);
}

.page-ban-ca__cta-description {
  font-size: 1.15em;
  margin-bottom: 40px;
  color: var(--color-text-secondary, #A7D9B8);
}

.page-ban-ca__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* General image responsiveness */
.page-ban-ca img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
  .page-ban-ca__hero-title {
    font-size: 2.4em;
  }
  .page-ban-ca__hero-description {
    font-size: 1em;
  }
  .page-ban-ca__intro-title,
  .page-ban-ca__guide-title,
  .page-ban-ca__features-title,
  .page-ban-ca__promo-title,
  .page-ban-ca__faq-title,
  .page-ban-ca__cta-title {
    font-size: 2em;
  }
  .page-ban-ca__icon-box-media {
    width: 160px;
    height: 160px;
  }
  .page-ban-ca__feature-heading {
    font-size: 1.2em;
  }
  .page-ban-ca__promo-card-img {
    
  }
}

@media (max-width: 768px) {
  .page-ban-ca__content-area {
    padding: 40px 15px;
  }

  /* HERO Section */
  .page-ban-ca__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-ban-ca__hero-container {
    flex-direction: column-reverse;
    padding: 30px 15px;
    gap: 30px;
  }

  .page-ban-ca__hero-content,
  .page-ban-ca__hero-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-ban-ca__hero-title {
    font-size: 2em;
    text-align: center;
  }

  .page-ban-ca__hero-description {
    font-size: 0.95em;
    text-align: center;
  }

  .page-ban-ca__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* Buttons - Mobile Specific */
  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary,
  .page-ban-ca a[class*="button"],
  .page-ban-ca a[class*="btn"] {
    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__hero-cta-buttons,
  .page-ban-ca__cta-buttons,
  .page-ban-ca__button-group,
  .page-ban-ca__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }

  /* Intro Section */
  .page-ban-ca__intro-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-ban-ca__intro-title {
    font-size: 1.8em;
  }

  .page-ban-ca__intro-description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }

  .page-ban-ca__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
  }

  /* Guide Section */
  .page-ban-ca__guide-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-ban-ca__guide-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-ban-ca__guide-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-ban-ca__guide-text-block,
  .page-ban-ca__guide-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-ban-ca__guide-text-block p,
  .page-ban-ca__guide-steps {
    font-size: 0.95em;
  }

  /* Features Section */
  .page-ban-ca__features-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-ban-ca__features-title {
    font-size: 1.8em;
  }

  .page-ban-ca__features-description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }

  .page-ban-ca__features-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__features-list-heading {
    font-size: 1.2em;
  }

  /* Promo Section */
  .page-ban-ca__promo-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-ban-ca__promo-title {
    font-size: 1.8em;
  }

  .page-ban-ca__promo-description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }

  .page-ban-ca__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__promo-card-img {
    
  }

  .page-ban-ca__promo-card-title {
    font-size: 1.2em;
  }

  .page-ban-ca__promo-card-text {
    font-size: 0.9em;
  }

  /* FAQ Section */
  .page-ban-ca__faq-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-ban-ca__faq-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-ban-ca__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-ban-ca__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  /* CTA Section */
  .page-ban-ca__cta-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .page-ban-ca__cta-title {
    font-size: 2em;
  }

  .page-ban-ca__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* General Image & Container Mobile Adaptation */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-ban-ca__hero-section,
  .page-ban-ca__intro-section,
  .page-ban-ca__guide-section,
  .page-ban-ca__features-section,
  .page-ban-ca__promo-section,
  .page-ban-ca__faq-section,
  .page-ban-ca__cta-section,
  .page-ban-ca__card,
  .page-ban-ca__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Specific for feature icon box media to maintain circle */
  .page-ban-ca__icon-box-media {
    width: 120px !important;
    height: 120px !important;
  }
}