﻿.hero-sitemap {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 50%, #1a252f 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-sitemap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                            radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-sitemap .container {
    position: relative;
    z-index: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-sitemap h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-sitemap .tagline {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-wrapper{
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

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

.sitemap-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.sitemap-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #34495e 0%, #2c3e50 100%);
    border-radius: 2px;
}

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

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

.sitemap-links li:last-child {
    margin-bottom: 0;
}

.sitemap-links a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-size: 1rem;
    line-height: 1.5;
}

.sitemap-links a:hover {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    transform: translateX(10px);
    box-shadow: 0 2px 10px rgba(52, 73, 94, 0.2);
}

.sitemap-links a::before {
    content: '→';
    margin-right: 12px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.sitemap-links a:hover::before {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .hero-sitemap {
        padding: 80px 20px 60px;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sitemap-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .sitemap-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .sitemap-links a {
        padding: 8px 12px;
        font-size: 0.95rem;
    }
}