.page-ban-ca__hero-section {
  padding-top: 10px;
  padding-bottom: 60px;
  background: var(--bg-color, #B71C1C); /* Fallback to custom background if shared doesn't define */
  color: #FFF5E1;
}

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

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

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

.page-ban-ca__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF5E1;
}

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

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for text on gold button */
}

.page-ban-ca__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-ban-ca__btn-secondary {
  background: #E53935; /* Auxiliary red */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #FFCC66; /* Glow for border */
}

.page-ban-ca__btn-secondary:hover {
  background: #C91F17; /* Main red */
  transform: translateY(-2px);
}

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

.page-ban-ca__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-ban-ca__content-section {
  padding: 60px 20px;
  background: #B71C1C; /* Background color */
  color: #FFF5E1; /* Text Main */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-ban-ca__content-section:last-of-type {
  border-bottom: none;
}

.page-ban-ca__content-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-ban-ca__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #FFD86A; /* Gold color for titles */
}

.page-ban-ca__section-description {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF5E1;
}

.page-ban-ca__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-ban-ca__feature-item,
.page-ban-ca__tip-item,
.page-ban-ca__benefit-item {
  background: #D32F2F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #FFF5E1;
  border: 1px solid #7A0E0E; /* Deep Red border */
}

.page-ban-ca__feature-title,
.page-ban-ca__tip-title,
.page-ban-ca__benefit-item strong {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD86A; /* Gold color */
}

.page-ban-ca__feature-text,
.page-ban-ca__tip-text,
.page-ban-ca__benefit-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF5E1;
}

.page-ban-ca__btn-large {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 350px;
  width: 100%;
}

.page-ban-ca__faq-list {
  margin-top: 30px;
}

.page-ban-ca__faq-item {
  background: #D32F2F; /* Card BG */
  border: 1px solid #7A0E0E; /* Deep Red border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-ban-ca__faq-item[open] {
  background: #C91F17; /* Main color when open */
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFD86A; /* Gold for question */
  cursor: pointer;
  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.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-toggle {
  transform: rotate(45deg);
}

.page-ban-ca__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-ban-ca__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

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

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

  .page-ban-ca__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    text-align: center;
  }

  .page-ban-ca__hero-description {
    font-size: 1rem;
    text-align: center;
  }

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

  .page-ban-ca__btn-primary,
  .page-ban-ca__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-ban-ca__content-section {
    padding: 40px 15px;
  }

  .page-ban-ca__content-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-ban-ca__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 20px;
  }

  .page-ban-ca__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

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

  .page-ban-ca__feature-item,
  .page-ban-ca__tip-item,
  .page-ban-ca__benefit-item {
    padding: 20px;
  }

  .page-ban-ca__feature-title,
  .page-ban-ca__tip-title,
  .page-ban-ca__benefit-item strong {
    font-size: 1.2rem;
  }

  .page-ban-ca__feature-text,
  .page-ban-ca__tip-text,
  .page-ban-ca__benefit-item p {
    font-size: 0.9rem;
  }

  .page-ban-ca__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-ban-ca__btn-large {
    max-width: 100%;
    font-size: 1rem;
  }

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

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

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

  .page-ban-ca__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
  }
}