/* Custom styles for the landing page */
.hero-section {
    background: url('../img/bg1.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 14rem 0;
    text-align: center;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}
.hero-section p.lead {
    font-size: 1.25rem;
    font-weight: 300;
}
.benefits-section {
    padding: 5rem 0;
}
.benefit-icon {
    font-size: 3rem;
    color: var(--bs-primary);
    margin-left: -1.5rem;;
}
