/* Image Sizing and Fitting Fixes */
.about-image img {
    max-width: 200px !important; /* Adjusted from 150px to 200px with !important */
    height: auto !important;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
    width: 200px !important; /* Adjusted explicit width with !important */
}

.project-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain; /* Changed from cover to contain */
}
