.sitemap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px; 
}
    .sitemap .section {
        max-width: 800px;
        padding: 10px 0; 
        text-align: center;
        width: 100%;
        position: relative;
    }
.site-title {
    font-weight: 700;
    margin: 0; 
    font-size: 2rem;
}
.site-subtitle {
    margin: 10px 0; 
    font-size: 1.8rem;
}
.launched {
    text-align: start;
    background: #eeeeee;
    padding: 10px 20px; 
    border-radius: 10px;
    margin-bottom: 10px; 
}
    .launched h3 {
        margin: 0 0 10px; 
        font-size: 15px;
        font-weight: bold;
    }
    .launched ul {
        padding-left: 5px;
        display: flex;
        flex-direction: column;
        gap: 1px;
    }
.link-launch {
    color: #3c3c3c;
    font-size: 12px;
}
    .link-launch:hover {
        text-decoration: underline;
    }

.sitemap-section {
    margin-bottom: 20px; 
}

.breadcrumb {
    position: absolute;
    width: 100%;
    background: none;
    display: flex;
    justify-content: left;
    border-bottom: none; 
}

    .breadcrumb ul {
        list-style: none;
        display: flex;
        margin: 0;
        padding: 0;
    }

    .breadcrumb li {
        margin-right: 5px;
        font-size: 17px;
    }

        .breadcrumb li::after {
            content: '>';
            margin-left: 5px;
        }

        .breadcrumb li:last-child::after {
            content: '';
        }

    .breadcrumb a.first {
        text-decoration: none;
        color: #6c757d;
        font-size: 17px;
        font-weight: 400;
    }

    .breadcrumb a.second {
        text-decoration: none;
        color: #000000;
        font-size: 17px;
        font-weight: 400;
    }

@media (max-width: 500px) {
    .site-title {
        font-size: 20px;
    }
    .site-subtitle {
        margin: 10px 0; 
        font-size: 16px;
    }
    .sitemap .section {
        padding: 40px 10px 20px; 
    }
    .launched {
        padding: 10px 18px; 
    }
        .launched ul {
            gap: 6px;
        }
}