/* Sitemap Styles */
.sitemap-section {
    background-color: #f8f9fa;
}

.sitemap-category {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sitemap-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.sitemap-category h2 {
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.sitemap-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.sitemap-list li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.sitemap-list li a:hover {
    color: #ff6b35;
    padding-left: 10px;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sitemap-category {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .sitemap-category h2 {
        font-size: 24px;
    }
    
    .sitemap-list li a {
        font-size: 14px;
    }
}

/* Animation for page load */
.sitemap-category {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.sitemap-category:nth-child(1) { animation-delay: 0.1s; }
.sitemap-category:nth-child(2) { animation-delay: 0.2s; }
.sitemap-category:nth-child(3) { animation-delay: 0.3s; }
.sitemap-category:nth-child(4) { animation-delay: 0.4s; }
.sitemap-category:nth-child(5) { animation-delay: 0.5s; }
.sitemap-category:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
