.sitemap-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.sitemap-title {
    text-align: center;
    color: #333;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.sitemap-intro {
    text-align: center;
    color: #555;
    font-size: 1.05em;
    margin-bottom: 40px;
}

.sitemap-section {
    margin-bottom: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.sitemap-section h2 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
}

.sitemap-list {
    list-style-type: none;
    padding-left: 10px;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    color: #555;
    line-height: 1.6;
}

.sitemap-list li::before {
    content: "•";
    color: #FF7A01;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sitemap-list a {
    color: #FF7A01;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.sitemap-list a:hover {
    color: #e56c00;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sitemap-container {
        padding: 15px;
    }

    .sitemap-title {
        font-size: 2em;
    }

    .sitemap-section {
        padding: 20px;
    }

    .sitemap-section h2 {
        font-size: 1.3em;
    }

    .sitemap-list li {
        font-size: 0.95em;
    }
}

/* Print Styles */
@media print {
    .sitemap-container {
        max-width: 100%;
        padding: 0;
    }

    .sitemap-section {
        box-shadow: none;
        padding: 15px 0;
        page-break-inside: avoid;
    }
}
