.page-ban-ca__hero-section {
  padding-top: 10px;
  padding-bottom: 60px;
  background: var(--color-background, #B71C1C);
  color: var(--text-main, #FFF5E1);
}

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

.page-ban-ca__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

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

.page-ban-ca__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-main, #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: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for contrast */
  border: 2px solid #F2B544; /* Border for gold button */
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 216, 106, 0.4);
}

.page-ban-ca__btn-secondary {
  background: #C91F17;
  color: #FFF5E1;
  border: 2px solid #F2B544;
}

.page-ban-ca__btn-secondary:hover {
  background: #E53935;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(201, 31, 23, 0.4);
}

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

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

.page-ban-ca__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  color: var(--text-main, #FFF5E1);
}

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

.page-ban-ca__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #F4D34D, #FFCC66);
  border-radius: 2px;
}

.page-ban-ca__section-description {
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--text-main, #FFF5E1);
}

.page-ban-ca__intro-section {
  background: #7A0E0E; /* Deep Red for contrast */
  padding: 60px 0;
  color: var(--text-main, #FFF5E1);
}

.page-ban-ca__features-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;
  background: #D32F2F; /* Card BG */
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: var(--text-main, #FFF5E1);
}

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

.page-ban-ca__icon-box-media {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2B544;
  box-shadow: 0 0 15px rgba(255, 204, 102, 0.6);
}

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

.page-ban-ca__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main, #FFF5E1);
}

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

.page-ban-ca__guide-section {
  padding: 60px 0;
  background: #B71C1C;
  color: var(--text-main, #FFF5E1);
}

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

.page-ban-ca__guide-step-item {
  background: #D32F2F;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-main, #FFF5E1);
}

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

.page-ban-ca__guide-step-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main, #FFF5E1);
}

.page-ban-ca__guide-step-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-main, #FFF5E1);
}

.page-ban-ca__promo-section {
  padding: 60px 0;
  background: #7A0E0E;
  color: var(--text-main, #FFF5E1);
}

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

.page-ban-ca__promo-card {
  background: #D32F2F;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: var(--text-main, #FFF5E1);
}

.page-ban-ca__promo-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-ban-ca__promo-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main, #FFF5E1);
}

.page-ban-ca__promo-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-main, #FFF5E1);
}

.page-ban-ca__faq-section {
  padding: 60px 0;
  background: #B71C1C;
  color: var(--text-main, #FFF5E1);
}

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

.page-ban-ca__faq-item {
  background: #D32F2F;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-main, #FFF5E1);
}

.page-ban-ca__faq-item[open] .page-ban-ca__faq-question {
  background: #C91F17;
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background: #D32F2F;
  border-bottom: 1px solid #7A0E0E;
  transition: background 0.3s ease;
  color: var(--text-main, #FFF5E1);
  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;
  width: 20px;
  text-align: center;
}

.page-ban-ca__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main, #FFF5E1);
}

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

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

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

.page-ban-ca__btn-text-link {
  display: inline-block;
  margin-top: 10px;
  color: #F4D34D;
  text-decoration: underline;
  font-weight: 500;
}

.page-ban-ca__btn-text-link:hover {
  color: #FFCC66;
}

.page-ban-ca__cta-final-section {
  background: linear-gradient(135deg, #E53935 0%, #C91F17 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFF5E1;
}

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

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

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

  .page-ban-ca__hero-content {
    text-align: center;
    flex: 1 1 100%;
  }

  .page-ban-ca__main-title {
    font-size: 2.2rem;
  }

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

  .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: 0.95rem;
  }

  .page-ban-ca__hero-image {
    flex: 1 1 100%;
  }

  .page-ban-ca__container {
    padding: 30px 15px;
  }

  .page-ban-ca__section-title {
    font-size: 1.8rem;
  }

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

  .page-ban-ca__intro-section,
  .page-ban-ca__guide-section,
  .page-ban-ca__promo-section,
  .page-ban-ca__faq-section,
  .page-ban-ca__cta-final-section {
    padding: 40px 0;
  }

  .page-ban-ca__features-grid,
  .page-ban-ca__guide-steps,
  .page-ban-ca__promos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ban-ca__icon-box-media {
    width: 140px;
    height: 140px;
    border-width: 3px;
  }

  .page-ban-ca__feature-title,
  .page-ban-ca__promo-title {
    font-size: 1.3rem;
  }

  .page-ban-ca__feature-text,
  .page-ban-ca__promo-text,
  .page-ban-ca__guide-step-text {
    font-size: 0.9rem;
  }

  .page-ban-ca__guide-step-title {
    font-size: 1.4rem;
  }

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

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

  /* Universal image and container styles for mobile */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-ban-ca__hero-main-img,
  .page-ban-ca__guide-step-img,
  .page-ban-ca__promo-img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-ban-ca__section,
  .page-ban-ca__card,
  .page-ban-ca__container,
  .page-ban-ca__hero-container,
  .page-ban-ca__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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