.about-container {
    background-color: #f9f9f9;
    padding: 60px;
    width: 100%;
    text-align: center;
    margin: auto;
}




.about-us {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 40px;
}
.about-us h2 {
    font-size: 4em;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    line-height: 1.3;
}

.about-us p {
     font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
    font-weight: 400;
    line-height: 1.5;
}


.about-us strong {
    color: #333;
}




.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #48108c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;

}




.cta-button:hover {
    background-color: #6a1b9a;
    transform: translateY(-3px);
}

.mission-vision {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.mission, .vision {
    background-color: #fff;
    padding: 35px;
    border-radius: 15px;
    flex: 1;
    min-width: 350px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    max-width: 500px;
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.mission img, .vision img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mission h3 {
    color: #48108c;
    margin-top: 20px;
    font-size: 22px;
    font-weight: bold;
}

.vision h3 {
    color: #46b0dd;
    margin-top: 20px;
    font-size: 22px;
    font-weight: bold;
}

.mission p, .vision p {
    font-size: 1.2em;
    color: #555;
	font-weight:400;
	line-height:1.5;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .about-container {
        padding: 40px;
    }
    
    .about-us {
        padding: 30px;
    }

    .mission-vision {
        flex-direction: column;
        align-items: center;
    }
}