/* Footer */
.site-footer {
    background-color: #d9d9d9;
    padding: 60px 20px;
    font-family: 'Abel', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* Logo */
.footer-logo img {
    width: 180px;
    height: auto;
}

/* Columns */
.footer-hours,
.footer-info {
    width: 35%;
}

.footer-heading {
    font-size: 19px;
    margin-bottom: 10px;
}

/* Divider lines */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #333;
    margin: 12px 0 20px;
}

/* Text */
.footer-text {
    font-size: 17px;
    line-height: 1.8;
}

/* Navigation */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    gap: 30px;
}

.footer-nav a {
    text-decoration: none;
    color: #333;
    font-size: 17px;
}

.footer-nav a:hover {
    text-decoration: underline;
}