.value-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(4px);
}

.value-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.value-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.value-text {
    padding: 24px;
}

.value-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: #9dff00; 
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(157, 255, 0, 0.3);
    display: inline-block;
    padding-bottom: 4px;
}

.value-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}