.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background: #F5F7FA; /* Body background color */
}

.page-ban-ca__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-ban-ca__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-ban-ca__container--center-text {
  text-align: center;
}

.page-ban-ca__section {
  padding: 60px 0;
}

.page-ban-ca__dark-bg {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  color: #ffffff; /* White text for dark background */
}

.page-ban-ca__light-bg {
  background: #F5F7FA; /* Light background */
  color: #333333; /* Dark text for light background */
}

.page-ban-ca__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  color: inherit; /* Inherit color from parent section */
}

.page-ban-ca__main-title {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__description {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: inherit;
}

.page-ban-ca__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding for hero section */
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-ban-ca__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-ban-ca__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Desktop default */
  display: block;
}

.page-ban-ca__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Slightly darker overlay for text readability */
  border-radius: 10px;
  margin-top: 100px; /* Push content down slightly from top */
  box-sizing: border-box;
}

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

.page-ban-ca__btn-primary,
.page-ban-ca__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}