.bg-light {
    background-color: #fffcf4 !important;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #000000;
    background: #ffffff;
    font-weight: 400;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "Poppins", sans-serif !important;
    color: #031550;
    line-height: 1.4;
    font-weight: 300;
    margin: 0 0 15px;
}

h3 {
    font-size: 24px;
    font-weight: 700;
}

@media only screen and (min-width: 1201px) and (max-width: 1400px) {
    h3 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 767px) {
    h3 {
        font-size: 20px;
    }
}

img {
    max-width: 100%;
    object-fit: cover;
}

.vision,
.mission,
.image-section {
    flex: 1;
    padding: 20px;
}

.vision h2,
.mission h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #333;
}

.vision p,
.mission p {
    line-height: 1.6;
    color: #555;
}

/* Center image styles */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vison-container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vison-container {
        flex-direction: column;
    }

    .vision,
    .mission,
    .image-section {
        width: 100%;
    }
}