.heroSection {
  position: relative;
  height: 600px;
  background-color: #f0f0f0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: hidden;
}

.heroBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.heroContent {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  padding-bottom: 40px;
  border-radius: 10px;
  box-sizing: border-box;
  z-index: 2;
}

.heroText {
  flex: 1;
  padding-right: 20px;
}

.heroText h1 {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
}

.heroText p {
  font-size: 1.625rem;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .heroText h1 {
    font-size: 2.5rem;
  }
  
  .heroText p {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .heroText h1 {
    font-size: 2rem;
  }
  
  .heroText p {
    font-size: 1.1rem;
  }
}


