.Values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ValueCard {
    background-color: var(--white);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.ValueIcon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.ValueCard h2 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--black-100);
}

.ValueCard p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray);
}