.hero-banner {
  background-color: #d60000; /* bright red */
  padding: 60px 40px;
  color: #fff;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Left side */
.banner-left h1 {
  font-size: 56px;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  color: #fff; /* ✅ force white */
}

/* Right side */
.banner-right {
  max-width: 420px;
}

.banner-right p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #fff; /* ✅ force white */
}

/* Button */
.cta-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 14px;
}

.cta-button:hover {
  background-color: #222;
}

/* Optional arrow */
.cta-button::after {
  content: " →";
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-left h1 {
    font-size: 36px;
  }

  .banner-right {
    max-width: 100%;
  }
}
