        .sitemap-container {
            max-width: 100%;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            padding: 50px 40px;
        }

        .sitemap-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 2px solid #eef2f7;
        }

        .sitemap-header h1 {
            font-size: 38px;
            color: #1a3a5c;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .sitemap-header p {
            color: #7f8c9b;
            font-size: 16px;
        }

        /* Main sections */
        .sitemap-section {
            margin-bottom: 45px;
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .section-title a {
            font-size: 24px;
            font-weight: 600;
            color: #1a3a5c;
            text-decoration: none;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .section-title a:hover {
            color: #d4091b;
        }

        .section-title .icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: linear-gradient(135deg, #d4091b, #e63946);
            color: #fff;
            flex-shrink: 0;
        }

        .section-title .icon svg {
            width: 24px;
            height: 24px;
        }

        /* Full-width list (Products, Solutions & Blog) */
        .fullwidth-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .fullwidth-item {
            background: #f8fafc;
            border-left: 4px solid #d4091b;
            border-radius: 0 8px 8px 0;
            padding: 16px 24px;
            transition: all 0.3s ease;
        }

        .fullwidth-item:hover {
            background: #fdf2f3;
            transform: translateX(5px);
        }

        .fullwidth-item > a {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            color: #1a3a5c;
            padding-bottom: 10px;
            margin-bottom: 8px;
            border-bottom: 1px solid #e3e8ef;
            transition: color 0.3s ease;
        }

        .fullwidth-item > a:hover {
            color: #d4091b;
        }

        .fullwidth-item > a .card-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #d4091b;
            flex-shrink: 0;
        }

        .fullwidth-item > a .card-icon svg {
            width: 20px;
            height: 20px;
        }

        .fullwidth-item dl {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 28px;
        }

        .fullwidth-item dl dd a {
            color: #5a6c7d;
            text-decoration: none;
            font-size: 14px;
            padding: 2px 0;
            transition: all 0.2s ease;
        }

        .fullwidth-item dl dd a:hover {
            color: #d4091b;
            text-decoration: underline;
        }

        /* Simple link list for About/Contact */
        .simple-links {
            display: flex;
            gap: 30px;
        }

        .simple-links a {
            color: #1a3a5c;
            text-decoration: none;
            font-size: 19px;
            font-weight: 600;
            padding: 10px 24px;
            background: #f8fafc;
            border-radius: 8px;
            border: 1px solid #e3e8ef;
            transition: all 0.3s ease;
        }

        .simple-links a:hover {
            background: linear-gradient(135deg, #d4091b, #e63946);
            color: #fff;
            border-color: transparent;
        }

        /* Footer */
        .sitemap-footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 2px solid #eef2f7;
            color: #95a5b3;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .sitemap-container {
                padding: 30px 20px;
            }

            .sitemap-header h1 {
                font-size: 29px;
            }

            .simple-links {
                flex-direction: column;
                gap: 12px;
            }

            .simple-links a {
                text-align: center;
            }
        }