.values-section {
    background-size: cover;
    background-position: center;
}

.value-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-img {
    position: relative;
}

.value-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.value-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--theme-color);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
}

.value-content {
    padding: 25px;
    text-align: center;
}

.value-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
