/* Hero Section */
.sitemap-hero-section {
    background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.sitemap-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.sitemap-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.sitemap-description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Section Cards */
.sitemap-section-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(195, 0, 47, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.sitemap-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(195, 0, 47, 0.15);
}

.avm-section {
    border-left: 5px solid #c3002f;
}

.carsi-section {
    border-left: 5px solid #ff512f;
}

.general-section {
    border-left: 5px solid #28a745;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #f8f9fa;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(195, 0, 47, 0.3);
}

.avm-section .section-icon {
    background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
}

.carsi-section .section-icon {
    background: linear-gradient(135deg, #ff512f 0%, #f09319 100%);
}

.general-section .section-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Link Lists */
.sitemap-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-link-list li {
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.sitemap-link-list li:hover {
    background: rgba(195, 0, 47, 0.05);
    padding-left: 0.5rem;
}

.sitemap-link-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.sitemap-link-list a:hover {
    color: #c3002f;
    transform: translateX(5px);
}

.sitemap-link-list i {
    margin-right: 0.5rem;
    color: #c3002f;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sitemap-title {
        font-size: 2rem;
    }
    
    .sitemap-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .sitemap-section-card {
        padding: 1.5rem;
    }
} 