

/* Image & Text Sections */
.image-text-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10%;
    background-color: #fff;
}

.image-text-section img {
    width: 50%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

.image-text {
    width: 50%;
    padding: 20px;
}
.image-texta {
    width: 100%;
    padding: 20px;
}

.image-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.image-texta h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.image-texta h1 {
    padding-top:30px;
    font-size: 28px;
    /* background-color: aquamarine; */
    margin-bottom: 10px;
}

.image-text p {
    padding-top: 30px;
    font-size: 16px;
    line-height: 1.6;
}
.image-texta p {
    font-size: 16px;
    line-height: 1.6;
    margin: 30px 40px;
}
/* Reverse Layout for the Second Section */
.image-text-section.reverse {
    flex-direction: row-reverse;
}

/* Mission, Vision & Values Section */
.section {
    text-align: center;
    padding: 50px 10%;
    background-color: #eaf2f8;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    padding: 10px;
    margin-right:0px;
    margin-left:auto;
    max-width: 300px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-text-section {
        flex-direction: column;
        text-align: center;
    }

    .image-text-section img,
    .image-text {
        width: 100%;
    }

    .image-text {
        padding: 20px 0;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }
}

/* Statistics Section */
.stats-section h1{
    font-size: 1.5em;
        margin-bottom: 30px;
}
.stats-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}

.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-box {
    width: 200px;
    padding: 20px;
    border: solid gray;
    border-radius: 10px;
    background:white;
    color:black;
    text-align: center;
    font-size: 1.2em;
}

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 100%;
        margin-bottom: 30px;
    }
}

