body {
    font-family: 'Merriweather', serif;
}

/* Hero Section */
#hero {
  background-image: url('../img/hero.jpg');
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Content Section */
#content {
  background-color: #f8f9fa;
}

#content h2 {
  color: #343a40;
}

/* Call to Action Section */
#cta {
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
}

/* Contact Form */
#contact {
  background-color: #e8eaed;
}

#contact h2 {
  color: #343a40;
}
.sticky-button {
    position: fixed;
    bottom: 20px; /* Adjust as needed */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for half of button width */
    z-index: 1000; /* Ensure button stays on top of other elements */
}