footer {
    display: flex;
    border-top: 3px solid #BE8445;
    color: #fff;
    padding: 40px 20px 10px 20px;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    text-align: center;
    width: 25%;
    margin-right: 11%;
    flex-direction: column;
}

.logo_footer img {
    object-fit: cover;
    width: 80%;
}

.information {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 56%;
    align-items: start;
}

.footer-contact h3,
.footer-hours h3,
.footer-socials h3 {
    color: #BE8445;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-contact p,
.footer-hours p {
    margin: 5px 0;
}

.footer-socials a {
    display: inline-block;
    margin-right: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #BE8445;
}

.footer-map h3 {
    color: #BE8445;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-map iframe {
    border-radius: 10px;
    width: 100%;
    height: 200px;
}