/* Location Section */
.about-location-container {
    margin: 4rem 0 0;
    padding-bottom: 4rem;
}

.about-location-container h3 {
    text-align: left;
    margin: 0 0 2rem 0;
    color: var(--text-color);
}

.location-container {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    margin: 0 auto;
    min-height: 400px;
    padding: 0.5rem 0 1rem 0;
}

.location-info {
    flex: 0 0 auto;
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    order: 2;
}

.location-info h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.location-address {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.location-address strong {
    font-weight: 500;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.location-map {
    flex: 1;
    min-height: 400px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    order: 1;
}

.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Design for Location */

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
    .location-container {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }

    .location-info {
        width: 100%;
    }

    .location-map {
        min-height: 350px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-location-container {
        margin: 3rem 0 0;
        padding-bottom: 3rem;
    }

    .location-container {
        flex-direction: column;
        gap: 1.5rem;
        min-height: auto;
    }

    .location-info {
        width: 100%;
    }

    .location-map {
        min-height: 300px;
    }

    .location-address {
        font-size: 0.95rem;
    }
}
