.logo {
    height: 50px;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    margin: 0 8px;
    border: 1px solid gray;
}

.logo:hover {
    background-color: white;
    border: 2px solid var(--hoverColor);
}

.about-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#logosContainer {
    background: rgb(245, 245, 255, 0.9);
    border-radius: 10px;
    padding: 24px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
}

#aboutText {
    font-size: 1.18em;
}

#aboutLogo {
    float: right;
    border-radius: 15px;
    background: white;
    height: 200px;
    margin-left: 24px;
    margin-bottom: 24px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about-content {
        padding: 10px !important;
    }

    #aboutLogo {
        float: none;
        width: 100%;
        height: auto;
        margin: 0 0 20px 0;
        display: block;
    }

    #logosContainer {
        justify-content: center;
    }

    .logo {
        height: 40px;
        padding: 8px;
    }
}