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

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

/* Hero Section */
.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, relying on shared body padding-top for header offset */
  padding-bottom: 40px;
  background-color: #F5F7FA; /* Light background for hero section */
}

.page-ban-ca__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 16px;
  gap: 40px; /* Increased gap for better spacing */
}

.page-ban-ca__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #333333; /* Ensure text is dark on light background */
}

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

.page-ban-ca__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

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

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
  text-align: center;
}

.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;
  transform: translateY(-2px);
}

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

.page-ban-ca__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.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: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.page-ban-ca__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #E53935; /* Brand primary color */
}

/* Intro Section */
.page-ban-ca__intro-section {
  padding: 60px 0;
  background-color: #ffffff; /* Card BG color */
}

.page-ban-ca__text-block {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #333333;
}

.page-ban-ca__text-block .highlight {
  color: #E53935; /* Highlight keywords with brand color */
  font-weight: 700;
}

.page-ban-ca__text-block a {
  color: #E53935; /* Link color */
  text-decoration: underline;
}

.page-ban-ca__text-block a:hover {
  color: #FF5A4F; /* Accent color on hover */
}

/* Features Section */
.page-ban-ca__features-section {
  padding: 60px 0;
  background-color: #F5F7FA; /* Background color */
}

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

.page-ban-ca__feature-item {
  background-color: #ffffff; /* Card BG color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  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__feature-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 8px;
}

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

.page-ban-ca__feature-description {
  font-size: 1rem;
  color: #555555;
}

/* Guide Section */
.page-ban-ca__guide-section {
  padding: 60px 0;
  background-color: #ffffff; /* Card BG color */
}

.page-ban-ca__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-step;
}

.page-ban-ca__guide-item {
  background-color: #F5F7FA; /* Background color */
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding-left: 70px; /* Space for step number */
}

.page-ban-ca__guide-item::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 25px;
  top: 25px;
  background-color: #E53935;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

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

.page-ban-ca__guide-item p {
  font-size: 1rem;
  color: #333333;
}

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

.page-ban-ca__cta-block p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #333333;
}

/* FAQ Section */
.page-ban-ca__faq-section {
  padding: 60px 0;
  background-color: #F5F7FA; /* Background color */
}

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

.page-ban-ca__faq-item {
  background-color: #ffffff; /* Card BG color */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden; /* Ensure content is hidden when collapsed */
  border: 1px solid #E0E0E0; /* Border color */
}

.page-ban-ca__faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #E0E0E0; /* Border color */
  list-style: none; /* Remove default marker */
}

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

.page-ban-ca__faq-question:hover {
  background-color: #f9f9f9;
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-question {
  border-bottom: 1px solid #E0E0E0;
}

.page-ban-ca__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #E53935;
  transition: transform 0.3s ease;
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' or 'minus' effect */
}

.page-ban-ca__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #555555;
  border-top: none;
}

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

.page-ban-ca__faq-answer a {
  color: #E53935;
  text-decoration: underline;
}

.page-ban-ca__faq-answer a:hover {
  color: #FF5A4F;
}

/* 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%;
    max-width: 800px;
  }
  .page-ban-ca__cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-ban-ca {
    font-size: 16px;
    line-height: 1.6;
  }

  /* HERO Section */
  .page-ban-ca__hero-section {
    padding-top: 10px !important; /* Small top padding, relying on shared body padding-top for header offset */
    padding-bottom: 30px;
  }
  .page-ban-ca__hero-container {
    padding: 30px 15px;
    gap: 25px;
  }
  .page-ban-ca__main-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .page-ban-ca__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-ban-ca__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .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: 12px 20px;
    min-width: unset;
  }
  .page-ban-ca__hero-image {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-ban-ca__hero-side-image {
    border-radius: 8px;
  }

  /* Section Titles */
  .page-ban-ca__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  /* Intro Section */
  .page-ban-ca__intro-section {
    padding: 40px 0;
  }
  .page-ban-ca__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-ban-ca__text-block {
    font-size: 1rem;
  }

  /* Features Section */
  .page-ban-ca__features-section {
    padding: 40px 0;
  }
  .page-ban-ca__features-grid {
    grid-template-columns: 1fr; /* Single column for features */
    gap: 20px;
  }
  .page-ban-ca__feature-item {
    padding: 25px;
  }
  .page-ban-ca__feature-image {
    margin-bottom: 15px;
  }
  .page-ban-ca__feature-title {
    font-size: 1.2rem;
  }
  .page-ban-ca__feature-description {
    font-size: 0.95rem;
  }

  /* Guide Section */
  .page-ban-ca__guide-section {
    padding: 40px 0;
  }
  .page-ban-ca__guide-item {
    padding: 20px 20px 20px 60px;
    margin-bottom: 15px;
  }
  .page-ban-ca__guide-item::before {
    left: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .page-ban-ca__guide-step-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .page-ban-ca__guide-item p {
    font-size: 0.95rem;
  }
  .page-ban-ca__cta-block {
    margin-top: 30px;
  }
  .page-ban-ca__cta-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  /* FAQ Section */
  .page-ban-ca__faq-section {
    padding: 40px 0;
  }
  .page-ban-ca__faq-list {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-ban-ca__faq-item {
    margin-bottom: 10px;
  }
  .page-ban-ca__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-ban-ca__faq-toggle {
    font-size: 1.2rem;
  }
  .page-ban-ca__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95rem;
  }

  /* General image responsiveness for content images */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}