 
.sitemap-page {
    padding: 120px 0;
    background: #fff;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 40px;
}

.sitemap-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.sitemap-header p {
    color: #666;
    font-size: 14px;
}

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

.sitemap-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #b8941f;
    display: inline-block;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.category-card {
    background: #fafafa;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.category-card:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.category-card > a {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.category-card > a:hover {
    color: #b8941f;
}

.sub-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sub-categories a {
    font-size: 12px;
    color: #666;
    padding: 3px 8px;
    background: #fff;
    border-radius: 4px;
}

.sub-categories a:hover {
    color: #b8941f;
    background: #f0f0f0;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}

.article-item {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.article-item a {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.article-item a:hover {
    color: #b8941f;
}

.article-date {
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .sitemap-page {
        padding: 30px 0;
    }
    
    .sitemap-header h1 {
        font-size: 24px;
    }
    
    .category-grid,
    .article-grid {
        grid-template-columns: 1fr;
    }
}
 