.footer {
    background: #103928;
    color: #FFFFFF;
    padding: 48px 80px;
}

.footer-top {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info {
    flex: 1;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-contact {
    color: #FFFFFF;
    opacity: 0.8;
    font-size: 0.875rem;
    font-weight: 400;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact-tel {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-contact-tel:hover {
    color: #3E8B1C;
}

.footer-menu {
    display: flex;
    padding: 20px 0;
    justify-content: flex-end;
    gap: 1rem;
}

.menu-group {
    min-width: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-title {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.menu-item {
    color: #FFFFFF;
    font-size: 1rem;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.menu-item:hover {
    opacity: 1;
}

.menu-item.fixed-width {
    width: 120px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-copyright {
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16%;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-link img {
    width: 36px;
    height: 36px;
}

.app-buttons {
    display: flex;
    gap: 1rem;
}

.app-button img {
    height: 40px;
    width: auto;
}

/* Media Queries */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-menu {
        grid-template-columns: repeat(3, 1fr);
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 580px) {
    .footer {
        padding: 32px 16px;
    }

    .footer-menu {
        display: inline-grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .menu-group {
        gap: 0.5rem;
    }

    .menu-item.fixed-width {
        width: auto;
    }
} 