footer {
    background-color: #222;
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    flex: 0 0 100%;
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo span {
    font-size: 1.4rem;
}

.footer-logo p {
    color: #aaa;
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    text-decoration: none;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon i {
    font-size: 15px;
    color: #fff;
    transition: color 0.3s ease;
}

.social-icon:hover {
    background-color: #ff5100;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 40px;
    padding: 0 15px;
}

.footer-column h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-separator {
    width: 50px;
    height: 3px;
    background-color: #ff5100;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff5100;
}

.contact-info p {
    margin-bottom: 15px;
    color: #aaa;
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    cursor: pointer;
}

.contact-info i {
    margin-right: 10px;
    color: #ff5100;
    min-width: 20px;
}

.map-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.map-container iframe {
    border-radius: 10px;
}

.footer-bottom {
    background-color: #1a1a1a;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-bottom p {
    color: #aaa;
}

.footer-bottom .highlight {
    color: #ff5100;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.footer-legal-links {
    margin-top: 5px;
}

.footer-legal-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ff5100;
}

.footer-divider {
    margin: 0 10px;
    color: #bbb;
}

@media (max-width: 992px) {
    .footer-column {
        flex: 0 0 50%;
    }

    .footer-logo {
        flex: 0 0 100%;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
    }

    .footer-logo span {
        font-size: 1.4rem;
    }

    .footer-logo p {
        font-size: 0.9rem;
    }

    .footer-logo img {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .footer-column {
        flex: 0 0 100%;
    }

    .footer-logo {
        flex: 0 0 100%;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
    }

    .footer-logo p {
        font-size: 0.9rem;
    }

    .footer-logo img {
        width: 80px;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .contact-info i {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-links li {
        margin-bottom: 5px;
    }

    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom p {
        font-size: 0.9rem;
    }
}