.elementor-5016 .elementor-element.elementor-element-b393edb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b1db009 *//* --- Sitemap / Index Page Styles --- */

.sitemap-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sitemap-header h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.sitemap-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Grid Layout */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Card Style */
.sitemap-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sitemap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}

/* Category Title */
.sitemap-card h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #f3f4f6;
}

/* Links List */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 0.5rem;
}

.sitemap-list a {
    text-decoration: none;
    color: #4b5563;
    font-size: 0.95rem;
    display: block;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.sitemap-list a:hover {
    color: #2563eb;
    background-color: #eff6ff;
    padding-left: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */