.home-banner-container {
  background-image: url("/public/images/banner.png");
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-content-wrapper {
  padding-top: 5rem;
  width: 90%;
  margin: 0 auto;
  padding-left: 5%;
}

.home-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.home-main-title br {
  content: "";
  display: block;
  margin-bottom: 0.8rem;
}

.home-subtitle {
  display: flex;
  font-size: 3rem;
  font-weight: 700;
  color: #b8272e;
  margin-bottom: 1rem;
  line-height: 1;
}

.home-description {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 2rem 0 4rem 0;
  color: #454545;
  line-height: 1.2;
}

.home-button,
.cta-button {
  background-color: transparent;
  color: #b8272e;
  border: 1px solid #b8272e;
  padding: 1rem 5rem;
  font-size: 1rem;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.home-button:hover,
.cta-button:hover {
  background-color: #b8272e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
