.service-area-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.service-area-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-area-title {
    text-align: center;
    margin-bottom: 2rem;
}

.service-area-title h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-area-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

#service-area-map {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Custom marker styling */
.custom-marker {
    background: none;
    border: none;
}

.marker-pin {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background: #f96302;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.marker-pin::after {
    content: '';
    width: 14px;
    height: 14px;
    margin: 8px 0 0 8px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
}

/* Popup styling */
.map-info-window {
    padding: 1rem;
    max-width: 300px;
}

.map-info-window h3 {
    color: #f96302;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.map-info-window p {
    color: #666;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Custom popup styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.leaflet-popup-tip {
    background: #fff;
}

/* Town label styles */
.town-label {
    background: none;
    border: none;
    box-shadow: none;
}

.town-label div {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .service-area-section {
        padding: 2rem 0;
    }

    .service-area-title h2 {
        font-size: 2rem;
    }

    #service-area-map {
        height: 400px;
    }
} 