.commitments-section {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.commitments-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.commitment-card {
    background-color: #ecf0f1;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.commitment-card:hover {
    transform: translateY(-5px);
}

.commitment-icon {
    font-size: 3rem;
    color: #026900;
    margin-bottom: 1rem;
}

.commitment-title {
    font-size: 1.5rem;
    color: #34495e;
    margin: 0.5rem 0;
}

.commitment-description {
    font-size: 1rem;
    color: #7f8c8d;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {

    .commitments-header p {
        font-size: 1rem;
    }
}