.egh-about-me-container {
    background-color: #f0f4f8;
    padding: 25px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden; /* To contain the floated element */
}

.egh-about-me-image {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
    width: 250px; /* Increased width */
    height: 250px; /* Increased height */
    object-fit: cover; /* To prevent distortion */
    border-radius: 50%;
    border: 6px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.egh-about-me-text {
    font-family: 'Lora', serif;
    color: #444;
}

.egh-about-me-text p {
    margin-bottom: 1.2em;
    line-height: 1.8;
    text-align: justify;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

/* Clearfix for the container */
.egh-about-me-container::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 768px) {
    .egh-about-me-image {
        float: none;
        display: block;
        margin: 0 auto 25px;
        width: 200px; /* Adjusted for mobile */
        height: 200px; /* Adjusted for mobile */
    }

    .egh-about-me-text p {
        text-align: justify;
    }
}
