.vision-mission {
    padding: 80px 0;
    background-color: #0D2233;
    color: white;
}

.vm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.vision-section, .mission-section {
    flex-basis: 48%;
    margin-bottom: 30px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.vision-section:hover, .mission-section:hover {
    transform: translateY(-10px);
}

.vision-section h2, .mission-section h2 {
    font-family: 'Abel', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: #fff;
}

.vision-section h2:after, .mission-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #c59042;
}

.vision-section p, .mission-section p {
    font-family: 'Akshar', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .vision-section, .mission-section {
        flex-basis: 100%;
        width: 100%;
    }
    
    .vm-container {
        flex-direction: column;
    }
    
    .vision-section h2, .mission-section h2 {
        font-size: 28px;
    }
}
