.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 30px;

    padding: 0 20px;
}

.value-item {
    background: rgb(255 186 186 / 5%);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(230 153 100 / 20%);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.value-item:nth-child(1) {
    animation-delay: 0.1s;
}

.value-item:nth-child(2) {
    animation-delay: 0.2s;
}

.value-item:nth-child(3) {
    animation-delay: 0.3s;
}

.value-item:nth-child(4) {
    animation-delay: 0.4s;
}

.value-item:nth-child(5) {
    animation-delay: 0.5s;
}

.value-item:nth-child(6) {
    animation-delay: 0.6s;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgb(230 119 100 / 10%);
    border-color: #e75027;
    box-shadow: 0 15px 30px rgb(230 132 100 / 20%);
}

.value-icon {
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-item h4 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    transition: color 0.3s ease;
    font-family: 'SF Pro Display';
}

.value-item:hover h4 {
    color: #ffffff;
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .value-item h4 {
        font-size: 20px;
    }

}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }

    .value-item {
        padding: 20px 15px;
    }



}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}