.about-edu-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.about-edu-image-container {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-edu-doctor-image {
    width: 100%;
    max-width: 500px; /* larger max-width */
    min-width: 300px; /* set minimum width so it doesn't shrink too small */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.about-edu-right-side-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-edu-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #062A4D;
    margin-bottom: 8px;
}

.about-edu-qualification {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-bottom: 24px;
}

.about-edu-education-title {
    font-size: 24px;
    font-weight: 600;
    color: #062A4D;
    margin-bottom: 16px;
}

.about-edu-education-details {
    list-style-type: disc;
    padding-left: 20px;
}

    .about-edu-education-details li {
        font-size: 16px;
        color: #333;
        margin-bottom: 12px;
        line-height: 1.5;
    }

/* Responsive */
@media (max-width: 768px) {
    .about-edu-container {
        flex-direction: column;
        text-align: center;
    }

    .about-edu-image-container, .about-edu-right-side-content {
        flex: 1 1 100%;
    }

    .about-edu-title h2, .about-edu-education-title {
        font-size: 22px;
    }

    .about-edu-qualification, .about-edu-education-details li {
        font-size: 16px;
    }

    .about-edu-doctor-image {
        max-width: 400px; /* slightly smaller for tablets */
    }
}

@media (max-width: 480px) {
    .about-edu-doctor-image {
        max-width: 320px; /* still large enough on small screens */
        min-width: 250px;
    }

    .about-edu-title h2, .about-edu-education-title {
        font-size: 20px;
    }

    .about-edu-qualification, .about-edu-education-details li {
        font-size: 14px;
    }
}



