:root {
            --sitemap-primary: #20385F;
            --sitemap-secondary: #70A0C9;
            --sitemap-accent: #6CB9B0;
            --sitemap-text: #264058;
            --sitemap-text-muted: #6c757d;
            --sitemap-bg: #F5F8FA;
            --sitemap-surface: #D3DBE2;
            --sitemap-border: #e9ecef;
        }

        body {
            font-family: var(--font-family-sans-serif);
            line-height: 1.6;
            margin: 0;
            padding: 10px;
            background-color: #c4dcecff;
            color: var(--sitemap-text);
            min-height: 100vh;
        }

        .sitemap-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #c4dcecff;
            padding: 40px;
             box-shadow: var(--shadow-large);
            border: 1px solid var(--sitemap-border);
            position: relative;
            overflow: hidden;
        }

        .sitemap-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
           
        }

        h1 {
            color: var(--sitemap-primary);
            text-align: center;
            margin-bottom: 10px;
            font-size: 2.5em;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .description {
            text-align: center;
            color: var(--sitemap-text-muted);
            margin-bottom: 50px;
            font-size: 1.1em;
            font-style: italic;
            opacity: 0.8;
        }

        .section {
            margin-bottom: 40px;
            border: 1px solid var(--sitemap-secondary);
            border-radius: 0 8px 8px 0;
            padding-left: 25px;
            background: linear-gradient(90deg, rgba(112, 160, 201, 0.05) 0%, transparent 100%);
            padding: 5px;
            border-radius: 12px;
            box-shadow: var(--shadow-small);
            transition: all 0.3s ease;
            background-color: #8199aeff;
        }

        .section:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-medium);
            border-left-color: var(--sitemap-accent);
        }

        .section h2 {
            color: var(--sitemap-primary);
            margin-bottom: 20px;
            margin-top: 5px;
            font-size: 1.5em;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section h2::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--sitemap-accent);
            border-radius: 50%;
            display: inline-block;
        }

        .subsection {
            margin-left: 0;
            margin-bottom: 15px;
            display: grid;
            gap: 8px;
         
        }

        .page-link {
            display: inline-flex;
            align-items: center;
            color: var(--sitemap-secondary);
            text-decoration: none;
            margin: 4px 8px 4px 0;
            margin-left: 60px;
            padding: 12px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.7);
            position: relative;
            overflow: hidden;
            min-width: 200px
        }

        .page-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(112, 160, 201, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .page-link:hover::before {
            left: 100%;
        }

        .page-link:hover {
            background: var(--sitemap-secondary);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            border-color: var(--sitemap-primary);
        }

        .page-link.main {
            font-weight: 700;
            font-size: 1.1em;
            background: linear-gradient(135deg, var(--sitemap-primary) 0%, var(--sitemap-secondary) 100%);
            color: white;
            padding: 15px 25px;
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: var(--shadow-medium);
            margin-left: 30px;
        }

        .page-link.main:hover {
            background: linear-gradient(135deg, var(--sitemap-secondary) 0%, var(--sitemap-accent) 100%);
            transform: translateY(-3px);
            box-shadow: var(--shadow-large);
        }

        .last-updated {
            text-align: center;
            margin-top: 50px;
            color: var(--sitemap-text-muted);
            font-size: 0.9em;
            padding: 20px;
            background: rgba(112, 160, 201, 0.1);
            border-radius: 8px;
            border-top: 3px solid var(--sitemap-accent);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding: 5px;
            }

            .container {
                padding: 20px;
                margin: 10px;
                border-radius: 12px;
            }

            h1 {
                font-size: 2em;
            }

            .section {
                padding: 15px;
                margin-bottom: 25px;
            }

            .subsection {
                gap: 6px;
            }

            .page-link {
                padding: 10px 15px;
                font-size: 0.9em;
                margin: 2px 4px 2px 0;
            }

            .page-link.main {
                padding: 12px 20px;
                font-size: 1em;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 15px;
                margin: 5px;
            }

            h1 {
                font-size: 1.8em;
            }

            .section {
                padding: 12px;
                border-left-width: 3px;
            }

            .page-link {
                padding: 8px 12px;
                font-size: 0.85em;
            }

            .subsection {
                display: flex;
                flex-wrap: wrap;
                gap: 4px;
            }
        }
