.vmv-section {
    padding: 3.7vh 0;
    background: linear-gradient(to bottom, #d9d9d973 0%, #ffffff 30%, #ffffff 60%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.vmv-section .section-subtitle-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.83vw;
    margin-bottom: 2.22vh;
    font-size: 1.3vh;
    font-weight: 600;
    letter-spacing: 0.16vh;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    position: relative;
    width: 100%;
}

.vmv-section .section-subtitle-with-lines::before,
.vmv-section .section-subtitle-with-lines::after {
    content: '';
    width: 2.08vw;
    height: 0.05vh;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    border-top: 0.05vh solid #000000;
}

.title-dot {
    color: #b3ce3a;
}

.vmv-intro {
    max-width: 26.042vw;
    margin: 0 auto 2.22vh;
    text-align: center;
}

.vmv-intro p {
    font-size: 1.63vh;
    line-height: 1.6;
    color: #545454;
    margin: 0;
}

.vmv-grid {
    display: flex;
    flex-direction: column;
    gap: 1.11vh;
    max-width: 26.042vw;
    margin: 0 auto 2.22vh;
}

.vmv-card {
    background: white;
    border-radius: 1.48vh;
    padding: 1.67vh 1.3vw;
    box-shadow: 0 0.56vh 2.22vh rgba(0, 0, 0, 0.06);
    border: 0.09vh solid rgba(179, 206, 58, 0.1);
    transition: all 0.4s cubic-bezier(0.2, 0.65, 0.2, 1);
    display: flex;
    align-items: flex-start;
    gap: 1.3vw;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.vmv-card:hover {
    transform: translateY(-0.56vh);
    box-shadow: 0 1.48vh 4.44vh rgba(0, 0, 0, 0.12);
    border-color: rgba(179, 206, 58, 0.2);
}

.card-icon {
    width: 3.7vh;
    height: 3.7vh;
    background: linear-gradient(135deg, #b3ce3a 0%, #a8c42a 100%);
    border-radius: 1.11vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 0.56vh 1.67vh rgba(179, 206, 58, 0.2);
}

.vmv-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0.74vh 2.22vh rgba(179, 206, 58, 0.3);
}

.card-icon svg {
    width: 1.85vh;
    height: 1.85vh;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.63vh;
    font-weight: 700;
    color: #0B1220;
    margin-bottom: 0.74vh;
    line-height: 1.3;
}

.card-summary {
    font-size: 1.6vh;
    color: #545454;
    line-height: 1.5;
    margin: 0 0 0.74vh 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.vmv-card:hover .card-summary {
    color: #545454;
}

.card-expanded {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.2, 0.65, 0.2, 1);
    transform: translateY(-0.93vh);
}

.vmv-card:hover .card-expanded {
    max-height: 13.89vh;
    opacity: 1;
    transform: translateY(0);
}

.card-expanded p {
    font-size: 1.6vh;
    color: #545454;
    line-height: 1.6;
    margin: 0;
    padding-top: 1.11vh;
    border-top: 0.09vh solid rgba(179, 206, 58, 0.1);
}

.vmv-conclusion {
    max-width: 26.042vw;
    margin: 0 auto;
    text-align: center;
    padding: 2.78vh 1.85vw;
    background: linear-gradient(135deg, rgba(179, 206, 58, 0.05), rgba(74, 124, 89, 0.03));
    border-radius: 1.48vh;
    border: 0.09vh solid rgba(179, 206, 58, 0.1);
}

.vmv-conclusion p {
    font-size: 1.3vh;
    line-height: 1.6;
    color: #545454;
    margin: 0;
    font-style: italic;
}

@media (max-width: 480px) {
    .vmv-section {
        padding: 8vh 6vw 10vh;
    }

    .vmv-section .section-title {
        font-size: 2.5vh !important;
        margin-bottom: 1.5vh !important;
    }

    .vmv-section .section-subtitle-with-lines {
        font-size: 1.1vh !important;
        gap: 1vw !important;
        margin-bottom: 2vh !important;
    }

    .vmv-section .section-subtitle-with-lines::before,
    .vmv-section .section-subtitle-with-lines::after {
        width: 2vw !important;
    }

    .vmv-section .section-description {
        font-size: 1.2vh !important;
        margin-bottom: 2vh !important;
        padding: 0 4vw;
    }

    .vmv-intro {
        margin-bottom: 2vh !important;
        padding: 0 4vw;
    }

    .vmv-intro p {
        font-size: 1.6vh !important;
    }

    .vmv-grid {
        gap: 1.5vh !important;
        margin-bottom: 2vh !important;
        max-width: 100% !important;
        padding: 0 4vw;
    }

    .vmv-card {
        padding: 2vh 3vw !important;
        gap: 2vw !important;
        border-radius: 1.5vh !important;
    }

    .card-icon {
        width: 3vh !important;
        height: 3vh !important;
        border-radius: 0.8vh !important;
    }

    .card-icon svg {
        width: 1.5vh !important;
        height: 1.5vh !important;
    }

    .card-content h3 {
        font-size: 1.6vh !important;
        margin-bottom: 0.8vh !important;
    }

    .card-summary {
        font-size: 1.3vh !important;
        line-height: 1.4 !important;
        margin-bottom: 0.5vh !important;
    }

    .card-expanded p {
        font-size: 1.6vh !important;
        line-height: 1.4 !important;
        padding-top: 0.8vh !important;
    }

    .vmv-card:hover .card-expanded {
        max-height: 8vh !important;
    }

    .vmv-card:hover {
        transform: none !important;
    }

    .vmv-card .card-expanded {
        display: none !important;
    }

    .vmv-conclusion {
        padding: 2vh 4vw !important;
        margin: 0 4vw;
    }

    .vmv-conclusion p {
        font-size: 1.2vh !important;
    }
}
