.be-sitemap {
    max-width: 1200px;
    margin: 0 auto;
}

.be-sitemap-section {
    margin-bottom: 40px;
}

.be-sitemap-section h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
}

.be-sitemap-section > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 3;
    column-gap: 30px;
}

.be-sitemap-section > ul > li {
    break-inside: avoid;
    padding: 5px 0;
}

.be-sitemap-section > ul > li > ul {
    list-style: none;
    padding-left: 20px;
    margin: 5px 0 10px;
}

.be-sitemap-section > ul > li > ul > li {
    padding: 3px 0;
}

.be-sitemap-section a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
}

.be-sitemap-section a:hover {
    color: #0073aa;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .be-sitemap-section > ul {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .be-sitemap-section > ul {
        column-count: 1;
    }
}
