/* --- Sitemap Page Specific Styles --- */

/* Layout & Containers */
body {
    background-color: #f8f9fa;
}

.sitemap-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

/* Header */
.sitemap-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2.5rem 1rem;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
}

.sitemap-header h1 {
    font-family: 'Playfair Display', serif;
    color: #0d1b2a;
    margin-bottom: 0.5rem;
    font-size: 2.8rem;
    font-weight: 700;
}

.sitemap-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* Sitemap Sections */
.sitemap-section {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden; /* To contain the border on h2 */
}

.sitemap-section h2 {
    font-family: 'Playfair Display', serif;
    color: #0d1b2a;
    font-size: 1.6rem;
    padding: 1.5rem 2rem;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background-color: #e9ecef; /* Grid lines */
    padding: 0;
}

.sitemap-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #ffffff;
    color: #343a40;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sitemap-links a:hover {
    background-color: #f8f9ff;
    color: #497EE6;
    transform: translateX(4px);
}

.sitemap-links i {
    color: #497EE6;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Divider */
.content-footer-divider {
    border: 0;
    height: 1px;
    background-color: #e9ecef;
    max-width: 900px;
    margin: 0 auto 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .sitemap-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    .sitemap-header h1 {
        font-size: 2.2rem;
    }
    .sitemap-links {
        grid-template-columns: 1fr;
    }
}
