



.service-header h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.service-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.service-content {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
}

.locations-section {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.locations-section h2 {
    color: #F68A0A;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
}

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

.location-item {
    background: #f1f7ff;
    padding: 12px 15px;
    border-radius: 5px;
    border-left: 4px solid #F68A0A;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: #e2eeff;
    transform: translateY(-2px);
}

.description-section {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.description-section h2 {
    color: #F68A0A;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.description-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.highlight {
    color: #F68A0A;
    font-weight: bold;
}

@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
    }

    .locations-section {
        padding-right: 0;
        margin-bottom: 30px;
    }
}
