* {
  padding: 0;
  margin: 0;
  font-family: Playfair Display;
}
body {
  font-family: "Georgia", serif;
}

h4 {
  padding-left: 4rem;
  margin-top: 2rem;
}

.container .hero-section {
  margin-bottom: 2rem;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-text h1 {
  font-weight: 700;
  font-size: 3rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn-dark {
  margin-right: 10px;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  /* Tablets */
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .hero-section {
    text-align: center;
  }
  .hero-section img {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  /* Mobile */
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-text p {
    font-size: 0.9rem;
  }
  .btn-lg {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  h4 {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}
