.elementor-212 .elementor-element.elementor-element-86617ba{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-212 .elementor-element.elementor-element-1bea832{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2e940c8 *//* Container styling */
.location-section {
    padding: 40px 20px;
    width: 100%;
}

.location-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card styling */
.location-card {
    width: 300px;
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block; /* Ensures the link behaves like a box */
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Label styling */
.location-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 6px 18px;
    border-radius: 8px;
    font-weight: 600;
    color: #222;
    font-family: 'Segoe UI', Arial, sans-serif;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .location-card {
        width: 100%; /* Cards take full width on small screens */
        max-width: 340px;
    }
}/* End custom CSS */