.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f9fafb;
    font-family: 'Arial', sans-serif;
}

.sitemap-title {
    font-size: 2.5rem;
    color: #1a202c;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.sitemap-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.sitemap-level-0 {
    flex: 1;
    min-width: 250px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-item {
    margin-bottom: 15px;
}

.sitemap-link {
    font-size: 1.1rem;
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.sitemap-link:hover {
    color: #1a4971;
    transform: translateX(5px);
}

.sitemap-level-1, .sitemap-level-2, .sitemap-level-3 {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.sitemap-level-1 .sitemap-link, 
.sitemap-level-2 .sitemap-link, 
.sitemap-level-3 .sitemap-link {
    font-weight: 400;
    color: #4a5568;
    font-size: 1rem;
}

.sitemap-description {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .sitemap-columns {
        flex-direction: column;
        gap: 20px;
    }

    .sitemap-title {
        font-size: 2rem;
    }

    .sitemap-level-0 {
        min-width: 100%;
    }
}