:root {
    --main-color: #7b1c1c;
  }
  .bg-main {
    background-color: var(--main-color);
  }
  .text-main {
    color: var(--main-color);
  }
  .whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .hero-image {
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  .hero-image h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px #000;
  }
.hero-image h3 {
font-size: 2rem;
margin: 10px;
text-shadow: 2px 2px 4px #000;
}
  .hero-image p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px #000;
  }
  .sticky-nav {
    position: sticky;
    top: 0;
    z-index: 999;
  }