: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;
  }

  .card-title {
    font-size: 1.25rem; /* Adjust the font size */
    font-weight: bold; /* Make the title bold */
    color: #333; /* Set the text color */
    text-align: center; /* Center-align the text */
    margin-bottom: 1rem; /* Add spacing below the title */
  }

  .card-text {
    text-align: justify; /* Justify the text */
    font-size: 1rem; /* Adjust the font size */
    color: #555; /* Set a neutral text color */
    line-height: 1.6; /* Improve readability with proper line spacing */
  }