.hero {
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)
    ),
    url("../images/hero.jpg") center/cover no-repeat;
}


.card {
    border-radius: 12px;
}

section {
    background-color: #f8f9fa;
}

h2 {
    color: #0d6efd; /* Bootstrap primary */
    letter-spacing: 1px;
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
}


.feature-icon {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

