.hero-banner, .paragraph--type--hero-banner, .paragraph--hero_banner {
  padding: 80px 0;
  text-align: center;
  border-radius: 20px;
  margin: 0 auto 40px auto; /* Ensure centering with margin auto */
  background-color: #f0f4f7; /* Default light gray-blue background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1243px; /* User preferred width */
  max-width: 100%;
}

/* User's specific class addition from diff */
/* .paragraph--hero_banner{
  width: 1243px;
  max-width: 100%;
  margin: auto;
  border-top-right-radius: 0;
  margin-bottom: 4rem;
} */

.hero-banner-title {
  color: #0b2533; /* Dark navy color from image */
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 10px;
  letter-spacing: -1px;
  width: 100%;
}

.hero-banner-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
  color: #6c757d;
}

.hero-banner-breadcrumb nav {
  display: inline-block;
}

.hero-banner-breadcrumb .breadcrumb {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  justify-content: center;
}

.hero-banner-breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  color: #6c757d;
}

.hero-banner-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "•"; /* Bullet point from design */
  padding: 0 10px;
  color: #adb5bd;
  font-size: 1.2rem;
}

.hero-banner-breadcrumb .breadcrumb-item a {
  color: #0b2533;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.hero-banner-breadcrumb .breadcrumb-item a:hover {
  color: #0056b3;
}

.hero-banner-breadcrumb .breadcrumb-item.active {
  color: #8a8fb9; /* Lighter color for current page in breadcrumb */
}
.paragraph--hero_banner{
  width: 1300px;
  max-width: 100%;
  margin: auto;
  border-top-right-radius: 0;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .hero-banner {
    padding: 60px 20px;
  }
  .hero-banner-title {
    font-size: 2.5rem;
  }
}
