#footerSectionOuterDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 90px;
    border-top: 1px solid #eaeaea;
    padding: 80px 0px;
    margin: 0px auto;
    width: 100%;
    box-sizing: border-box;
    background-color: #f5f4f4;
}

#footerSectionLinksOuterDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

#footerSectionCompanyNameAndSloganOuterDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 250px;
}

#footerSectionCompanyNameDiv {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    text-align: center;
}

#footerSectionCompanySloganDiv {
    font-size: 18px;
    color: #333;
    text-align: center;
    opacity: 0.7;
}

.footerSectionIndividualLinkDiv {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .footerSectionIndividualLinkDiv {
        font-size: 16px;
    }
}

@media screen and (max-width: 550px) {
    #footerSectionOuterDiv {
        gap: 70px;
    }

    #footerSectionLinksOuterDiv {
        flex-direction: column;
        gap: 50px;
    }

    .footerSectionIndividualLinkDiv {
        font-size: 18px;
    }
}