body {
	background: #fff !important;
}
.about-container {
    background-color: #ffffff;
    width: 95%;
    max-width: 1400px;
    padding: 60px 0;
    margin: 0 auto 40px;
}

/* Sections inside about-container */
.block {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 90%;
    max-width: 1150px;
    margin: 0 auto; /* Centers each section */
}

/* Section Title */
.block h2 {
    font-size: 28px;
    color: #48108c; 
    margin-bottom: 20px;
}

/* Paragraphs */
.block p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Lists */
.block ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #444;
}

.block ul li {
    margin-bottom: 10px;
}

/* Strong text */
.block strong {
    color: #6a1b9a;
}

/* Image Styling */
.block .image {
    flex: 1;
    text-align: center;
}

.block .image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Content section */
.block .content {
    flex: 1.2;
}

/* Section Colors */
.who-we-are {
    background-color: #e3f2fd;
	margin-bottom:40px;
}

.what-we-do {
    background-color: #fff3e0;
	margin-bottom:40px;
}

.why-choose-us {
    background-color: #f5f5f5;
	margin-bottom:40px;
}

/* Image positioning */
.who-we-are .image {
    order: 2;
}

.who-we-are .content {
    order: 1;
}

.what-we-do .image {
    order: 1;
}

.what-we-do .content {
    order: 2;
}

.why-choose-us .image {
    order: 2;
}

.why-choose-us .content {
    order: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container {
        width: 98%; /* Ensure it stays centered */
    }

    .block {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .block .image img {
        max-width: 100%;
    }
}
