/* Locations Section */
.locations-section {
    padding: 4rem 2rem;
    background: #F5F3FF;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.locations-content {
    max-width: 600px;
}

.locations-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4c1d95;
    margin-bottom: 2rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.location-button {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.location-button.primary {
    background: #6d28d9;
    color: white;
}

.location-button.primary:hover {
    transform: translateY(-2px);
    background-color: #4c1d95;
    box-shadow: 0 4px 12px rgba(109,40,217,.3);
}

.location-button.secondary {
    background: #EDE9FE;
    color: #4c1d95;
}

.location-button.secondary:hover {
    transform: translateY(-2px);
    background-color: #DDD6FE;
    box-shadow: 0 4px 12px rgba(109,40,217,.15);
}

.location-button.other {
    background: #EDE9FE;
    color: #4c1d95;
}

.locations-image {
    width: 100%;
    /* min-height: 400px; */
    border-radius: 12px;
    overflow: hidden;
    max-width: 1200px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    /* padding: 2rem; */
}


.locations-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    border-radius: 12px;
    object-position: center;
}

@media (max-width: 1024px) {
    .locations-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .locations-content {
        text-align: center;
        margin: 0 auto;
    }

    .locations-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .locations-content h2 {
        font-size: 2rem;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}