.sitemap {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
            overflow: hidden;
            animation: fadeIn 0.8s ease-out;
            padding: 30px 0 0px 0px;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Main Navigation Styles */
        .main-nav {
            background: #848484;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .main-nav h2 {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            position: relative;
            z-index: 1;
        }

        .nav-items {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .nav-item {
            background: #073048;
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 15px 30px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .nav-item:hover {
            background: #fff;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .nav-item a {
            color: #fa4318;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .nav-item:hover a {
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        /* Services Section */
        .services-section {
            padding:70px 0px 25px 0px;
            background-color: #fff;
            margin-top: -60px;
        }

        .service-category h3 {
            background: #2a84b8;
            color: white;
            text-align: center;
            padding: 5px;
            margin-bottom: 20px;
            border-radius: 15px;
            font-size: 25px;
            font-weight: 700;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }

        .service-category h3::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .service-category:hover h3::before {
            left: 100%;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 10px;
            margin-top: 5px;
            margin-bottom: -25px;
        }

        .location-item {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            padding: 10px 0 15px 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .location-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4facfe, #00f2fe);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .location-item:hover::before {
            transform: scaleX(1);
        }

        .location-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .location-item a {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            line-height: 1.4;
            transition: all 0.3s ease;
            display: block;
        }

        .location-item:hover a {
            color: #4facfe;
            text-shadow: 0 2px 4px rgba(79, 172, 254, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .sitemap {
                margin: 10px;
                border-radius: 15px;
            }

            .main-nav {
                padding: 20px 15px;
            }

            .main-nav h2 {
                font-size: 2rem;
                margin-bottom: 20px;
            }

            .nav-items {
                flex-direction: column;
                align-items: center;
            }

            .nav-item {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }

            .services-section {
                padding: 50px 0px;
            }

            .service-category h3 {
                font-size: 1.5rem;
                padding: 15px;
            }

            .locations-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .location-item {
                padding: 20px;
            }

            .location-item a {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .main-nav h2 {
                font-size: 1.8rem;
            }

            .nav-item {
                padding: 12px 25px;
            }

            .nav-item a {
                font-size: 1rem;
            }

            .service-category h3 {
                font-size: 1.3rem;
            }

            .location-item {
                padding: 15px;
            }
        }

        /* Tablet Styles */
        @media (min-width: 769px) and (max-width: 1024px) {
            .locations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Large Desktop */
        @media (min-width: 1400px) {
            .locations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            body {
                /*background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);*/
            }

            .sitemap {
                background: #fff;
                color: white;
            }

            .location-item {
                background: linear-gradient(145deg, #34495e 0%, #2c3e50 100%);
                border-color: rgba(255, 255, 255, 0.1);
            }

            .location-item a {
                color: #ecf0f1;
            }

            .location-item:hover a {
                color: #00f2fe;
            }
        }
        
        
        #ddd {
            margin-bottom: 10px;
        }
        