.page-ban-ca {
  font-family: Arial, sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

.page-ban-ca__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #F4F7FB; /* Background */
}

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

.page-ban-ca__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #1F2D3D; /* Text Main */
}

.page-ban-ca__hero-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-ban-ca__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

.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;
  min-width: 300px;
}

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

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-ban-ca__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-ban-ca__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-ban-ca__btn-secondary {
  background-color: #ffffff;
  color: #2F6BFF; /* Main Color */
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__btn-secondary:hover {
  background-color: #f0f7ff;
  color: #2F6BFF;
  border-color: #2F6BFF;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

.page-ban-ca__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
}

.page-ban-ca__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  text-align: center;
}

.page-ban-ca__intro-section {
  background-color: #F4F7FB; /* Background */
  padding-bottom: 60px;
}

.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 {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 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: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #D6E2FF; /* Border */
  box-shadow: 0 0 0 8px rgba(165, 196, 255, 0.3); /* Glow */
}

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

.page-ban-ca__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 10px;
}

.page-ban-ca__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-ban-ca__guide-section {
  background-color: #FFFFFF; /* Card BG */
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-ban-ca__step-item {
  background-color: #F4F7FB; /* Background */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.page-ban-ca__step-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 10px;
}

.page-ban-ca__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-ban-ca__promo-section {
  background-color: #F4F7FB; /* Background */
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-ban-ca__card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.page-ban-ca__card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistent card appearance */
  object-fit: cover;
}

.page-ban-ca__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin: 20px 20px 10px;
}

.page-ban-ca__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-ban-ca__card .page-ban-ca__btn-secondary {
  margin: 0 20px 20px;
}

.page-ban-ca__faq-section {
  background-color: #FFFFFF; /* Card BG */
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-ban-ca__faq-item {
  background-color: #F4F7FB; /* Background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-ban-ca__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  cursor: pointer;
  list-style: 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;
  font-weight: bold;
  color: #2F6BFF; /* Main Color */
  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: 1em;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
}

.page-ban-ca__cta-final-section {
  padding: 60px 16px;
  text-align: center;
}

.page-ban-ca__dark-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Main Color to Auxiliary Color */
  color: #ffffff;
}

.page-ban-ca__section-title--light {
  color: #ffffff; /* White text for dark background */
}

.page-ban-ca__text-block--light {
  color: #f0f8ff; /* Slightly off-white for contrast */
}

.page-ban-ca__cta-final-section .page-ban-ca__cta-buttons {
  justify-content: center;
  margin-top: 30px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-ban-ca__hero-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-ban-ca__section-title {
    font-size: 2em;
  }
  .page-ban-ca__hero-container,
  .page-ban-ca__content-area {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-ban-ca__icon-box-media {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-ban-ca__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 30px;
  }
  .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__hero-title {
    font-size: 2.2em;
    text-align: center;
  }
  .page-ban-ca__hero-description {
    text-align: center;
  }
  .page-ban-ca__hero-cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
    gap: 10px;
  }
  .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-left: 15px;
    padding-right: 15px;
  }
  .page-ban-ca__content-area {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-ban-ca__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-ban-ca__text-block {
    font-size: 0.95em;
  }
  .page-ban-ca__features-grid,
  .page-ban-ca__guide-steps,
  .page-ban-ca__promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-ban-ca__icon-box-media {
    width: 150px;
    height: 150px;
    border-width: 3px;
    box-shadow: 0 0 0 6px rgba(165, 196, 255, 0.2);
  }
  .page-ban-ca__feature-title {
    font-size: 1.3em;
  }
  .page-ban-ca__step-title {
    font-size: 1.4em;
  }
  .page-ban-ca__card-image {
    height: 180px;
  }
  .page-ban-ca__card-title {
    font-size: 1.2em;
  }
  .page-ban-ca__card-description {
    font-size: 0.95em;
  }
  .page-ban-ca__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-ban-ca__faq-toggle {
    font-size: 1.3em;
  }
  .page-ban-ca__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }
  /* Universal image and container responsive styles */
  .page-ban-ca img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-ban-ca__section,
  .page-ban-ca__card,
  .page-ban-ca__container,
  .page-ban-ca__feature-item,
  .page-ban-ca__step-item,
  .page-ban-ca__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-ban-ca__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}