.value-card {
    background-color: var(--dark-blue);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.value-card .icon {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--light-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--light-grey);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 48rem) {
    .value-card {
        padding: 20px;
    }

    .value-card h3 {
        font-size: 1.5rem;
    }

    .value-card p {
        font-size: 1rem;
    }
}