/* ===== Hero Section Styles (Updated) ===== */
.hero-section {
  background-color: #F3F3F3; /* Light Gray Softbox */
  border-radius: 35px;
  padding: 40px 20px; /* Reduced top and bottom padding */
  margin-top: 10px;
  margin-bottom: 10px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 450px;
  text-align: left;
  padding-left: 25px;
}

.hero-pretitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 520;
  font-size:1.1rem;
  color: #FF6666;
  margin-bottom: 8px;
}

.hero-title {
  font-family: 'Hellix', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.25;
  color: #231F20;
  margin: 0 0 16px;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 520;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #231F20;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  font-family: 'Hellix', sans-serif !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #FF6666;
  color: #FFFFFF !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #e65555;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #FF6666;
  color: #FF6666;
}

.btn-outline:hover {
  background-color: #FF6666;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1 1 350px;
  text-align: center;
  align-self: flex-end;
}

.hero-image img {
  max-width: 110%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
  margin-left: -25px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 35px 20px;
    margin-top: 1px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-copy {
    flex: 1 1 100%;
    margin: 0 auto; /* ✅ Centers the block */
    padding-left: 10px; /* ✅ Equal margins */
    padding-right: 10px;
  }

  .hero-image {
    flex: 1 1 100%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    font-family: 'Hellix', sans-serif !important;
  }
}