/* Vision and Mission Section */
.vision-mission {
    background-color: var(--beige-color);
    padding: 80px 30px;
}

.vm-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vision, .mission {
    margin-bottom: 60px;
}

.vision h2, .mission h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}

.vision h2::after, .mission h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.vision-content, .mission-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.vision-text, .mission-text {
    flex: 1;
    min-width: 300px;
}

.vision-text p, .mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.value-list {
    list-style: none;
}

.value-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
    color: #555;
}

.value-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.vision-image, .mission-image {
    flex: 1;
    min-width: 300px;
}

.vision-image img, .mission-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

