.banner-why {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    justify-content: center;
    align-items: stretch;
    margin: 20px 0;
    padding: 0 10px;
}

.welcome-text {
    text-align: center;
}

.why-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-content i {
    background-color: #3E5335;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 10px;
}

.why-content p {
    text-align: center;
}

.why-content h3 {
    text-align: center;
    margin: 10px 0 5px;
}

/* ---------- RESPONSIVITA ---------- */
@media (max-width: 1024px) {
    .banner-why {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-why {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .banner-why {
        grid-template-columns: 1fr;
    }
}