/* about-cards.css */

body {
    color: white;
}

main {
    width: 70%;
    margin: 50px auto;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.feature-cards .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
    text-align: center;
    color: var(--color-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card h4, .card p {
    margin: 0;
}

.bi {
    font-size: 30px;
}

.feature-cards .card svg {
    font-size: 20px;
    margin-bottom: 10px;
}


/* Hover effect */
.feature-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
