.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about-image {
    flex: 1;
    margin-right: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: #4CAF50;
    font-size: 2em;
    margin-bottom: 15px;
}

.about-content h3 {
    color: #1a237e;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.about-content h4 {
    color: #4CAF50;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.about-content p {
    color: #444;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ceo {
    font-style: italic;
    color: #1a237e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .about-content h2 {
        font-size: 1.8em;
    }

    .about-content h3 {
        font-size: 1.4em;
    }
}

/* mission */

.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.mission-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.mission-image {
    width: 45%;
    margin-bottom: 20px;
}

.mission-image img {
    width: 100%;
    height: auto;
}

.mission-text {
    width: 45%;
}

.mission-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: #000;
    /* Dark Green */
}

.mission-description {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mission-section {
        flex-direction: column;
    }

    .mission-image {
        width: 100%;
    }

    .mission-text {
        width: 100%;
    }
}

