/* 
 * Sitemap page custom styles
 * Extracted from inline <style> for better performance and security
 */

.sitemap-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.sitemap-card:hover {
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.2);
    transform: translateY(-5px);
}

.sitemap-card h4 {
    color: #1e3a8a;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #1e3a8a;
    padding-bottom: 15px;
}

.sitemap-card h4 i {
    margin-right: 10px;
    font-size: 22px;
}

.sitemap-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-card li {
    margin-bottom: 12px;
}

.sitemap-card li a {
    color: #555;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 15px;
}

.sitemap-card li a:hover {
    color: #1e3a8a;
    transform: translateX(8px);
}

.sitemap-card li a i {
    margin-right: 8px;
    color: #1e3a8a;
    font-size: 14px;
}

.sitemap-card li strong {
    font-size: 15px;
    display: block;
    margin: 15px 0 8px 0;
    color: #1e3a8a;
}

