/* Hero Section */
.hero {
  background-color: #333;
  margin-bottom: 60px;
  overflow: hidden;
  padding: 2rem;
  position: relative;
  text-align: left;
  font-family: "benton-modern-display", serif;
  display: flex;
  flex-wrap: wrap;
  color: whitesmoke;
  box-sizing: border-box;
}

.hero-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 1rem;
}

.hero-left h1 {
  font-family: 'Brush Script MT', cursive;
  font-size: 4rem;
  margin: 0;
}

.hero-left p {
  font-size: 2.5rem;
  margin-top: 0.5rem;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-right button {
  padding: 10px;
  font-size: 16px;
  background-color: #2d9391;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: capitalize;
}

.hero button:hover {
  background-color: #2baab1;
  text-decoration: none;
}

.hero-2nd-line {
  font-family: "benton-modern-display", serif;
  font-size: xx-large;
  font-weight: 500;
  color: #2baab1;
  font-style: oblique;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    flex: none;
    padding: 0;
  }

  .hero-right {
    margin-top: 20px;
    justify-content: center;
  }
}
