.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 0 0;
}

.footer-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

.footer-left {
    flex: 1;
    padding-right: 40px;
}

.footer-left h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 600;
}

.footer-left h2 span {
    color: var(--secondary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    /* display: flex; */
    align-items: center;
    gap: 20px;
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.info h4 {
    color: #ffffff;
    font-size: 1.1em;
    margin-bottom: 8px;
}

.info p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95em;
}

.footer-right {
    flex: 1;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    margin-top: 10px;
    filter: grayscale(100%) contrast(1.1);
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid #ffffff;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9em;
}

@media (max-width: 968px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-left {
        padding-right: 0;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-left h2 {
        font-size: 2em;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .info {
        text-align: center;
    }

    .map-container {
        height: 250px;
    }
} 