.commitment {
    background: linear-gradient(145deg, #fafafa, #f3f3f3);
    box-shadow: 6px 6px 12px rgba(0.1, 0.1, 0.1, 0.3), -6px -6px 12px rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px auto;
    max-width: 900px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15), -10px -10px 20px rgba(255, 255, 255, 0.7);
}

.commitment h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.commitment h2 i {
    margin-right: 10px;
    color: #7b3130;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commitment-list li {
    font-size: 1.2rem;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #333;
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), -4px -4px 10px rgba(255, 255, 255, 0.6);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.commitment-list li i {
    font-size: 1.8rem;
    color: #7b3130;
    min-width: 40px;
}

.commitment-list li:hover {
    background-color: #7b3130;
    transform: translateX(10px);
    color: #fafafa;
}

.commitment-list i:hover {
    color: #fafafa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .commitment {
        padding: 20px;
    }
    .commitment h2 {
        font-size: 1.6rem;
    }
    .commitment-list li {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .commitment-list li i {
        margin-bottom: 10px;
    }
}
