.content-section{
    max-width: 1200px;
    margin: 0 auto;
}

.aboutImage {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.aboutTextContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 100px;
}

.aboutTitle {
    color: #FFE599;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    width: 100%;
    text-align: left;
}

.aboutSubtitle{
    margin: 0;
    width: 100%;
    text-align: left;
    color: #FFFFFF;
    opacity: 0.7;
}

@media (max-width: 980px) {
    .aboutTextContainer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 100px;
        gap: 0;
    }

    .aboutTitle{
        width: 100%;
    }

    .aboutSubtitle{
        width: 100%;
    }

}