.page-ban-ca {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #F5F7FA;
}

.page-ban-ca__hero-section {
  padding-top: 10px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #F5F7FA 0%, #E0E0E0 100%);
}

.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;
  padding-right: 20px;
}

.page-ban-ca__hero-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  color: #E53935;
  margin-bottom: 15px;
  max-width: 600px;
}

.page-ban-ca__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 30px;
  max-width: 600px;
}

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

.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;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 250px; /* Limit individual button width */
  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: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
}

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

.page-ban-ca__intro-section {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

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

.page-ban-ca__intro-title {
  font-size: 2.2em;
  color: #E53935;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-ban-ca__intro-description {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-ban-ca__intro-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-ban-ca__feature-item {
  flex: 1 1 30%;
  min-width: 280px;
  max-width: 350px;
  background-color: #F5F7FA;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-ban-ca__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FF5A4F;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-ban-ca__feature-heading {
  font-size: 1.5em;
  color: #E53935;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-ban-ca__feature-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-ban-ca__game-showcase-section,
.page-ban-ca__faq-section {
  padding: 60px 0;
  background-color: #F5F7FA;
}

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

.page-ban-ca__section-title {
  font-size: 2.2em;
  color: #E53935;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-ban-ca__section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-ban-ca__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-ban-ca__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333333;
  max-width: 800px;
  text-align: justify;
}

.page-ban-ca__mt-20 {
  margin-top: 20px;
}

.page-ban-ca__benefits-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  color: #ffffff;
}

.page-ban-ca__benefits-section .page-ban-ca__section-title {
  color: #ffffff;
}

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

.page-ban-ca__benefit-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-ban-ca__benefit-heading {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-ban-ca__benefit-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-ban-ca__faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-ban-ca__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  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.1em;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  background-color: #f9f9f9;
  list-style: none;
  user-select: none;
}

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

.page-ban-ca__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #E53935;
  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: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  border-top: 1px solid #E0E0E0;
}

@media (max-width: 1024px) {
  .page-ban-ca__hero-title {
    font-size: 2.5em;
  }

  .page-ban-ca__intro-title,
  .page-ban-ca__section-title {
    font-size: 2em;
  }

  .page-ban-ca__hero-container {
    padding: 30px 16px;
  }

  .page-ban-ca__intro-section,
  .page-ban-ca__game-showcase-section,
  .page-ban-ca__benefits-section,
  .page-ban-ca__faq-section {
    padding: 50px 0;
  }

  .page-ban-ca__feature-item {
    min-width: 250px;
    padding: 25px;
  }

  .page-ban-ca__icon-box-media {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-ban-ca__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px !important;
  }

  .page-ban-ca__hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px !important;
    gap: 20px !important;
  }

  .page-ban-ca__hero-content {
    padding-right: 0;
    order: 2; /* Content after image */
  }

  .page-ban-ca__hero-image {
    order: 1; /* Image first */
  }

  .page-ban-ca__hero-title {
    font-size: 2em !important;
    margin-bottom: 10px !important;
  }

  .page-ban-ca__hero-description {
    font-size: 1em !important;
    margin-bottom: 20px !important;
  }

  .page-ban-ca__hero-cta-buttons {
    flex-direction: column;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-ban-ca__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
  }

  .page-ban-ca__intro-section,
  .page-ban-ca__game-showcase-section,
  .page-ban-ca__benefits-section,
  .page-ban-ca__faq-section {
    padding: 40px 0 !important;
  }

  .page-ban-ca__intro-title,
  .page-ban-ca__section-title {
    font-size: 1.8em !important;
    margin-bottom: 30px !important;
  }

  .page-ban-ca__intro-features {
    flex-direction: column;
    gap: 20px !important;
  }

  .page-ban-ca__feature-item {
    min-width: unset;
    max-width: 100%;
    padding: 20px !important;
  }

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

  .page-ban-ca__content-area {
    padding: 0 15px !important;
  }

  .page-ban-ca__text-block {
    font-size: 1em !important;
  }

  .page-ban-ca__content-image,
  .page-ban-ca__benefits-section .page-ban-ca__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-ban-ca__benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-ban-ca__benefit-item {
    padding: 25px !important;
  }

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

  .page-ban-ca__faq-answer {
    padding: 10px 20px 15px !important;
    font-size: 0.95em !important;
  }

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

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