.location-box {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
    border: 1px solid #eee;
}

.location-grid-2-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.location-row-1 {
    display: flex;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #eee;
}

.map-placeholder {
    flex: 1.5;
    min-height: 350px;
    background: #f0f4f8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.address-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-row-2 {
    display: flex;
    gap: 30px;
}

.info-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #eee;
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--icon-purple);
    border-radius: 2px;
}

.info-list {
    list-style: none;
}

.info-item {
    margin-bottom: 15px;
}

.info-label {
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.info-value {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 1024px) {

    .location-row-1,
    .location-row-2 {
        flex-direction: column;
        gap: 24px;
        border: none;
        box-shadow: none;
    }

    .map-placeholder {
        flex: auto;
        width: 100%;
    }

    .map-placeholder iframe {
        min-height: 300px;
    }

    .address-info {
        width: 100%;
        flex: none;
    }

    .location-row-1>*,
    .location-row-2>* {
        width: 100% !important;
        flex: none !important;
    }

    .info-card {
        padding: 24px;
        border: none;
        box-shadow: none;
    }

    .info-item {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-bottom: 0;
    }

    .solutions-container {
        padding: 0 !important;
    }

    .location-row-1 {
        padding: 20px;
    }

    .map-placeholder iframe {
        min-height: 250px;
    }

    .info-title {
        font-size: 18px;
    }

    .info-value {
        font-size: 14px;
    }
}