/* About Us Page Specific Styles */
.about {
    padding: 40px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-container {
    width: 80%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.about-img-container {
    flex: 1 1 45%;
    max-width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1 1 50%;
    max-width: 100%;
}

.about-text h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.mission,
.values,
.testimonials {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}
.mission h2 {
    font-size: 2.5rem; /* Keep the header large */
    font-weight: bold; /* Ensure boldness for emphasis */
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase; /* Optional: for added emphasis */
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    width: 80%;
    margin: 0 auto;
    font-style: italic; /* Optional: to add a more reflective feel */
}
.mission h2,
.values h2,
.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    width: 80%;
    margin: 0 auto;
}

.values-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.value-item {
    background-color: #f4f4f4;
    padding: 20px;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 1rem;
    color: #777;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.testimonial-item {
    background-color: #f4f4f4;
    padding: 20px;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-item p {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-img-container,
    .about-text {
        flex: 1 1 100%;
    }

    .about-img {
        max-width: 90%;
    }

    .about-text h1 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .values-container {
        flex-direction: column;
    }

    .testimonial-container {
        flex-direction: column;
    }
}
