.page-bnc {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-bnc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-bnc__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
}

.page-bnc__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-bnc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-bnc__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-bnc__hero-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-bnc__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-bnc__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-bnc__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-bnc__button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

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

.page-bnc__button--secondary {
  background-color: #FFFFFF;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-bnc__button--secondary:hover {
  background-color: #F0F5FF;
  color: #2F6BFF;
}

.page-bnc__about-section,
.page-bnc__features-section,
.page-bnc__cta-section {
  padding: 60px 0;
  background-color: #F4F7FB;
  text-align: center;
}

.page-bnc__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 25px;
}

.page-bnc__section-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #1F2D3D;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

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

.page-bnc__feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-bnc__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-bnc__feature-image {
  width: 100%;
  max-width: 400px; /* Constrain image width within card */
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-bnc__feature-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-bnc__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-bnc__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .page-bnc__hero-section {
    padding-bottom: 30px;
  }

  .page-bnc__hero-title {
    font-size: 2em;
  }

  .page-bnc__hero-description {
    font-size: 1em;
  }

  .page-bnc__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-bnc__button {
    width: 100%;
    max-width: 300px;
  }

  .page-bnc__section-title {
    font-size: 1.6em;
  }

  .page-bnc__section-text {
    font-size: 0.95em;
  }

  .page-bnc__features-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile content image overflow prevention */
  .page-bnc img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-bnc__container {
    padding: 15px;
  }

  .page-bnc__hero-title {
    font-size: 1.8em;
  }

  .page-bnc__hero-description {
    font-size: 0.9em;
  }

  .page-bnc__about-section,
  .page-bnc__features-section,
  .page-bnc__cta-section {
    padding: 40px 0;
  }

  .page-bnc__section-title {
    font-size: 1.4em;
  }

  .page-bnc__cta-actions {
    flex-direction: column;
  }
}