.sitemap-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        .sitemap-intro {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 12px;
        }
        .sitemap-intro h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .sitemap-intro p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        .sitemap-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
            text-align: center;
        }
        .stat-item {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #6366f1;
            display: block;
        }
        .stat-label {
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 5px;
        }
        .sitemap-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .sitemap-section {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .sitemap-section:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
        }
        .sitemap-section h2 {
            color: #1e293b;
            font-size: 1.4rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid #6366f1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-icon {
            width: 28px;
            height: 28px;
            background: #6366f1;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            font-weight: bold;
        }
        .sitemap-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sitemap-section li {
            margin-bottom: 10px;
        }
        .sitemap-section a {
            color: #475569;
            text-decoration: none;
            display: block;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.2s ease;
            position: relative;
            border-left: 3px solid transparent;
        }
        .sitemap-section a:hover {
            color: #6366f1;
            background: #f1f5f9;
            border-left-color: #6366f1;
            transform: translateX(5px);
        }
        @media (max-width: 768px) {
            .sitemap-intro h1 {
                font-size: 2rem;
            }
            .sitemap-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .sitemap-section {
                padding: 20px;
            }
            .sitemap-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .sitemap-intro h1 {
                font-size: 1.75rem;
            }
            .sitemap-stats {
                grid-template-columns: 1fr;
            }
            .sitemap-container {
                padding: 15px;
            }
        }
