.footer-container {
    background-color: var(--black);
    text-align: center;
    padding: 1.5rem 1rem;
    padding-left: 5%;
    padding-right: 5%;
}

.footer-logo { 
    justify-self: center;
    cursor: pointer;
}

.footer-logo img {
    width: 100px; 
    height: auto;
    padding-bottom: 10px;
    display: block;
    margin: 0 auto;
}

.footer-address {
    border-top: 1px solid #444;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0 auto;  
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 700px;
}

.footer-item {
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.footer-item i {
    color: var(--white);
    font-size: 20px;
}

.footer-info a:hover { 
    color: var(--orange); 
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 15px;
    margin-top: 20px;
    color: var(--white);
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-icon {
    width: 30px;
    height: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer-icon:hover {
    opacity: 0.6;
}

.footer-social img {
    transition: opacity 0.3s ease;
}

.footer-social img:hover {
    opacity: 0.5;
}

@media screen and (min-width: 768px) {
    .footer-bottom {
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
}