/* About Page */

#page-header{
    background-image: url("../img/banner.png");
}
  
#about-head {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: auto;
    height: auto;
    padding: 60px 80px;
    box-sizing: border-box;
}

/* Ensures text content expands dynamically */
#about-head div {
    flex: 1;
    padding-left: 40px;
}

/* Adjust image size */
#about-head img {
    width: 50%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* Prevent footer overlap by allowing section to grow */
#about-head p {
    line-height: 1.6;
    overflow-wrap: break-word;
}

/* Responsive Design */
@media (max-width: 1000px) {
    #about-head {
        flex-direction: column;
        padding: 40px 20px;
    }

    #about-head img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    #about-head div {
        padding-left: 0px;
    }
}
