@import url("https://fonts.googleapis.com/css2?family=Itim&family=Metal&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f5f5f5;
}

.logo-image {
  height: 100px;
}

.qoutes {
  padding: 85px 0px 50px 0px;
}
.qoutes > p {
  text-align: center;
  font-family: "Metal", serif;
  font-weight: 400;
  font-style: normal;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.hero-banner {
  background-color: #e0e0e0;
  padding: 10rem;
  text-align: center;
  background-image: url("/assets/img/banner-image-1.webp");
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.get-started {
  padding: 0.8rem 2rem;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
}

.get-started:hover {
  background-color: #0056b3;
}

.why-choose-us {
  padding: 0.5rem;
  width: 400px;
  border: 1px solid #ddd;
  border-radius: 8px;
  opacity: 0.5;
  text-wrap: nowrap;
}

.why-choose-us h2 {
  font-size: 50px;
  margin-bottom: 1rem;
  color: snow;
}

@media (max-width: 1024px) {
  .why-choose-us h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px){
  .why-choose-us{
    min-width: 300px;
  }

  .qoutes {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 768px) {

  .logo-image {
    height: 80px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .banner-content {
    display: flex;
    align-items: center;
  }

  .hero-banner,
  .why-choose-us {
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-banner button {
    font-size: 1.2rem;
    padding: 12px 20px;
  }
}
