.aboutheader
{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
}

.aboutparagraph
{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: justify;
    margin: 0 240px;
    font-weight: normal;
}

.aboutlink
{
    color: #DE3E26;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    display: inline-block;
}

.aboutimage
{
    display: block;
    margin: 32px auto 16px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.teammember-image
{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
    position: relative;
}

.teammember
{
    display: inline-block;
    text-align: center;
    margin: 0 16px;
}

.teammember-name
{
    font-size: 18px;
    font-weight: bold;
}

.teammember-role
{
    font-size: 14px;
    color: #555;
}

.teamdiv
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 16px;
}

@media (max-width: 768px) 
{
    .aboutparagraph
    {
        margin: 0 16px;
    }

    .teammember-image
    {
        width: 120px;
        height: 120px;
    }

    .aboutimage
    {
        margin: 16px auto;
        max-width: 80%;
    }
}