body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

header img {
    display: block;
    margin: 0 auto;
}

h2 {
    margin-top: 2rem;
    font-weight: bold;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

footer {
    background: #2C3E50;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}
body {
    font-family: 'Montserrat', sans-serif;
  }
  .hero {
    background: url('https://example.com/your-hero-image.jpg') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
  }
  .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* A dark overlay so text stands out */
  }
  .hero-content {
    position: relative;
    z-index: 1;
  }
  .btn-cta {
    background-color: #333; /* Adjust for brand color */
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    margin-top: 1rem;
    border-radius: 4px;
  }
  .btn-cta:hover {
    background-color: #333;
    color: #fff;
  }