.county-section {
    margin-bottom: 1em;
}

.county-section h2 {
    margin-bottom: 0.5em;
    color: #333;
    font-size: 1.2em;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5em;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5em;
    transition: all 0.3s ease;
}

.sitemap-item:hover {
    background: #fff;
    border-color: #0073aa;
    box-shadow: 0 1px 4px rgba(0,115,170,0.1);
    transform: translateY(-1px);
}

.sitemap-item a {
    text-decoration: none !important;
    color: #0073aa;
    font-weight: 400;
    display: block;
    font-size: 0.9em;
}

.sitemap-item a:hover {
    color: #005177;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
}