/* Location Section Styles */
.location-section {
    background-color: #070707;
    color: #fff;
    min-height: 600px;
    width: 100%;
    padding: 150px 0;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
}

.location-container {
    display: flex;
    justify-content: space-between;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 80px;
    height: 100%;
}

.location-left {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-right {
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.section-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 200;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
}

.location-left h2 {
    font-size: 60px;
    line-height: 65px;
    color: #ffffff;
    font-weight: 200;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    letter-spacing: -0.03em;
    margin: 0 0 40px 0;
}

.location-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.8;
    font-weight: 200;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 30px;
}

.location-address {
    margin-top: 40px;
}

.location-address p {
    margin-bottom: 5px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .location-container {
        padding: 0 60px;
    }
    
    .location-left h2 {
        font-size: 50px;
        line-height: 55px;
    }
}

@media (max-width: 992px) {
    .location-section {
        height: auto;
        padding: 150px 0;
    }
    
    .location-left h2 {
        font-size: 42px;
        line-height: 48px;
    }
}

@media (max-width: 767px) {
    .location-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .location-container {
        flex-direction: column;
        padding: 0 30px;
    }
    
    .location-left, .location-right {
        width: 100%;
    }
    
    .location-left {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .location-left h2 {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 20px;
    }
    
    .location-left p {
        text-align: left;
    }
    
    .location-address {
        text-align: center;
        margin-top: 30px;
    }
    
    .map-container {
        height: 350px;
        margin: 0 auto;
        max-width: 100%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
}
