.footer {
    background-color: #535353;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-container {
    max-width: 1000px;
    margin: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    text-align: left;
    padding-bottom: 20px;
    flex-wrap: wrap;
}

.footer h4 {
    font-size: 1.3rem;
    margin-bottom: 0px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.footer h4::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ff7b00;
    margin-top: 5px;
}

.footer p {
    margin: 5px 0;
}

.footer .footercontact, .footer .hours {
    width: 45%;
}

.footer .highlight {
    font-weight: bold;
    color: #ffffff;
}

.full-width {
    border-top: 0.5px solid #807f7f;
    width: 100%;
    margin: 0px 0;
    position: absolute;
    left: 0;
}

.footer-bottom {
    text-align: center;
    width: 100%;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer .footercontact, .footer .hours {
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        flex-direction: row;
        justify-content: center;
    }
    .footer .footercontact, .footer .hours {
        width: 48%;
    }
}
