.hero {
  position: relative;
  padding: 0;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
}

.hero .container {
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

.hero-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #f5f5f5;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 100vh;
  max-width: none;
  max-height: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 52%;
  margin-left: auto;
  padding: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.hero-content h1 {
  text-align: right;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 700;
}

.hero-content p {
  text-align: right;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: white;
  line-height: 1.6;
}

.hero-button {
  display: inline-block;
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  width: fit-content;
}

.hero-button:hover {
  background-color: #DF6B22;
  color: white;
  transform: translateY(-2px);
}

@media (min-width: 769px) and (max-width: 992px) {
  .hero-content {
    width: 70%;
    padding: 40px;
    align-items: flex-end;
    text-align: right;
  }

  .hero-content h1 {
    text-align: right;
  }

  .hero-content p {
    text-align: right;
  }

  .hero-button {
    align-self: right;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 100vh;
  }

  .hero-image {
    position: absolute;
    height: 100%;
  }

  .hero-image img {
    min-height: 100vh;
  }

  .hero-content {
    width: 100%;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero-content p {
    font-size: 1.1rem;
    text-align: center;
  }

  .hero-button {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
