.vision-values-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    /* margin: 50px auto; */
    max-width: 1200px;
}

.tile {
    flex: 1 1 calc(33.33% - 20px);
    background: linear-gradient(145deg, #fafafa, #f3f3f3);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1), -6px -6px 12px rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15), -10px -10px 20px rgba(255, 255, 255, 0.7);
}

.tile h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.tile h2 i {
    margin-right: 10px;
    color: #7b3130;
}

.tile p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* Values List */
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-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;
}

.values-list li i {
    font-size: 1.8rem;
    color: #7b3130;
    min-width: 40px;
}

.values-list li:hover {
    background-color: #7b3130;
    transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-values-section {
        flex-direction: column;
        max-width: 100%; /* Ensure full width on smaller screens */
    }
    .tile {
        flex: 1 1 100%;
        padding: 30px;
    }
    .tile h2 {
        font-size: 1.6rem;
    }
    .values-list li {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .values-list li i {
        margin-bottom: 10px;
    }
}
