.home-about-us {
    width: 100%;
    display: flex;
    padding: var(--dl-space-space-threeunits);
    padding-top: 200px;
    padding-bottom: 200px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.about-us-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1000px;
}

.about-us-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ghassan-image-aboutUs {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 30px;    
}

.home-about-us-header {
    cursor: pointer;
    font-size: 3rem;
    transition: 0.3s;
}


.home-about-us-text {
    line-height: 1.5;
    padding-top: 20px;
    margin-bottom: 20px;
}

.home-link04 {
    transition: 0.3s;
    padding-top: var(--dl-space-space-unit);
    text-decoration: none;
}

.home-link04:hover {
    transform: scale(1.02);
}


.button-wrapper {
    display: flex;
    justify-content: center;
}


@media screen and (max-width: 768px) {
    .about-us-content {
        flex-direction: column;
        align-items: center;
    }

    .home-about-us {
        flex-direction: column;
        align-items: center;
    }

    .about-us-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-us-content {
        max-width: 100%;
        text-align: center;
    }
    .ghassan-image-aboutUs {
        width: 300px;
        height: 300px;

        margin-right: 0;
        margin-bottom: 20px;
    }

}