.about-container { 
    font-size: 1.1rem; 
    line-height: 1.6; 
    text-align: justify; 
    margin-bottom: 30px; 
    color: #444; 
    /* Clearfix to handle floating elements properly */
    overflow: hidden; 
}

.drop-cap-img { 
    float: left; 
    /* CHANGE: Increased from 120px to 220px for a bigger look */
    width: 220px; 
    margin-right: 25px; 
    margin-bottom: 10px; 
    border-radius: 8px; /* Optional: adds nice rounded corners */
}

/* === NEW: Style for the second image at the bottom === */
.about-footer-img {
    display: block;
    margin: 30px auto 10px auto; /* Center it with spacing */
    max-width: 80%; /* Don't let it get too huge */
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .drop-cap-img {
        width: 150px; /* Smaller on mobile so text still fits */
        margin-right: 15px;
    }
}