.sa-container-a9018114 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-family: inherit;
}

.sa-top-section-a9018114 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sa-heading-a9018114 {
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.sa-grid-a9018114 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.sa-pill-a9018114 {
    background-color: #f1f5f9;
    color: #0f172a;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sa-pill-a9018114:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.sa-pill-a9018114 svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.sa-bottom-section-a9018114 {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.sa-map-container-a9018114 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e2e8f0; /* Fallback */
}

/* Simulate Snazzy Maps light blue/gray style using CSS filters on standard Google Maps embed */
.sa-map-container-a9018114 iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(80%) sepia(20%) hue-rotate(180deg) brightness(105%) contrast(110%);
}

.sa-floating-card-a9018114 {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    width: 360px;
    z-index: 10;
}

.sa-card-title-a9018114 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.sa-card-list-a9018114 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sa-card-list-a9018114 li {
    margin-bottom: 18px;
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
}

.sa-card-list-a9018114 li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .sa-bottom-section-a9018114 {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        border-radius: 0;
        box-shadow: none;
        gap: 20px;
    }
    
    .sa-map-container-a9018114 {
        position: relative;
        height: 350px;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .sa-floating-card-a9018114 {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        border: 1px solid #e2e8f0;
    }
}