/* ===================================
   SITEMAP SIMPLE - PREFIX: smap-
   =================================== */

.smap-sitemap-section {
    background: #fff;
    padding: 60px 20px;
}

.smap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.smap-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #ff5500;
    text-align: center;
}

.smap-category {
    margin-bottom: 40px;
}

.smap-category-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff5500;
    margin-bottom: 15px;
}

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

.smap-links-list li {
    padding: 0;
}

.smap-links-list a {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.smap-links-list a:hover {
    color: #ff5500;
    text-decoration: underline;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .smap-sitemap-section {
        padding: 40px 16px;
    }

    .smap-main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .smap-category-title {
        font-size: 1.3rem;
    }

    .smap-links-list a {
        font-size: 0.95rem;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .smap-main-title {
        font-size: 1.8rem;
    }

    .smap-category-title {
        font-size: 1.2rem;
    }
}