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

.sitemap-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.sitemap-description {
    font-size: 1.125rem;
    color: #666;
    text-align: center;
}

.sitemap-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.sitemap-section-title.text-dark {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.75rem;
}

.sitemap-list li {
    margin: 0;
}

.sitemap-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #0066cc;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #e9ecef;
}

.sitemap-link:hover {
    background: #0066cc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.2);
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 2rem;
    }

    .sitemap-list {
        grid-template-columns: 1fr;
    }

    .sitemap-section {
        padding: 1.5rem;
    }
}
