
.hero-section {
  height: 90vh;
  display: flex;
  align-items: end;
  /* 100% of the viewport height */
  position: relative;

  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)),
    url('images/contact/contact2.png') no-repeat top left/cover;

  color: white;
  text-align: left;
  padding: 100px 20px;
}

.hero-section .btn {
  /* background-color: #ff6600; */
  border: none;
  border-radius: 10px;
}


.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fd7e14;
  animation: fadeInDown 1s ease;
}

.hero-section p {
  font-size: 1.25rem;
  max-width: 600px;
  /* margin: 20px auto; */

}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

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

}