.footer {
    background: #f5f5f5;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px;
    align-items: start;
}

.footer-company-details {
    color: #333;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.footer-company-details .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #c4a000;
    padding-bottom: 10px;
    text-align: left;
}

.footer-company-details .info-item {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.footer-company-details .label {
    font-weight: bold;
    color: #b8960a;
    min-width: 80px;
    margin-right: 10px;
}

.footer-company-details .value {
    color: #333;
}

.map-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.map-container .section-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
    border-bottom: 2px solid #c4a000;
    padding-bottom: 8px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    .footer-company-details {
        padding: 20px;
    }
    .footer-company-details .section-title {
        font-size: 1.3rem;
    }
    .footer-company-details .info-item {
        flex-direction: column;
        margin-bottom: 15px;
    }
    .footer-company-details .label {
        margin-bottom: 5px;
        min-width: auto;
    }
    .map-container iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 30px 15px;
    }
    .footer-company-details {
        padding: 15px;
    }
    .footer-company-details .info-item {
        font-size: 0.9rem;
    }
    .map-container iframe {
        height: 200px;
    }
}