/* Section Styling */
.vm-section {
    padding: 60px 20px;
    /*background: #ffffff;*/
   
}

/* Container */
.vm-container {
    max-width: 1200px;
    margin: auto;
}

/* Row */
.vm-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Columns */
.vm-col {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.vm-col:hover {
    transform: translateY(-5px);
}

/* Headings */
.vm-col h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
    position: relative;
}



/* Text */
.vm-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}