.vision-mission-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 20px;
    background-color: #ffffff; /* Light background */
}

.vision-mission-block {
    display: flex;
    justify-content: space-around;
    max-width: 1200px; /* Limit width */
    flex-wrap: wrap;
    margin: 0 auto; /* Center the block */
}

.vision-section, .mission-section {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 15px;
    text-align: center;
    flex: 1; /* Allow flexibility */
    max-width: 400px; /* Maximum width for each section */
    min-width: 280px; /* Minimum width for smaller screens */
    transition: transform 0.3s ease;
}

.vision-section:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.mission-section:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.vision-image, .mission-image {
    width: 100%; /* Full width */
    border-radius: 10px;
    margin-bottom: 15px;
}

.vision-title, .mission-title {
    color: #3D52A0; /* Theme color */
    font-size: 1.5rem; /* Title size */
    margin: 10px 0;
}

.vision-content, .mission-content {
    color: #333; /* Text color */
    font-size: 1rem; /* Content size */
    line-height: 1.5; /* Spacing between lines */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .vision-title, .mission-title {
        font-size: 1.25rem; /* Reduce title size */
    }

    .vision-content, .mission-content {
        font-size: 0.9rem; /* Reduce content size */
    }
}

@media (max-width: 480px) {
    .vision-mission-block {
        flex-direction: column; /* Stack sections vertically */
        align-items: center; /* Center align items */
    }

    .vision-section, .mission-section {
        max-width: 100%; /* Full width on small screens */
        margin: 10px 0; /* Margin adjustments */
    }
}
