.footer-section {
    height: 10vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    background-color: #FDECCE;

}

.footer-section div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.footer-section p {
    color: #6C1E28;
    font-weight: 600;
    font-size: 15px;
}

@media (max-width: 768px) {

    .footer-section {
        height: 15vh;
        gap: 0;
    }

    .footer-section div {
        flex-direction: column;
        padding: 10px;
    }
}

@media (max-width: 360px) {
    .footer-section p {
        font-size: 12px;
    }
}