section.sitemap  {
    margin-bottom: 90px;
}

section.sitemap .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

section.sitemap .row .col {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    min-width: 100%;
}

section.sitemap h2 {
    font-size: 22px;
    text-transform: uppercase;
    color: var(--dark-blue-100);
    font-style: italic;
    font-weight: bold;
    margin-bottom: 15px;
}

section.sitemap ul {
    list-style: circle;
    padding-left: 10px;
    margin-left: 15px;
}

section.sitemap ul a {
    font-size: 16px;
}

@media (max-width: 768px) {
    section.sitemap .container {
        max-width: 90%;
    }

    section.sitemap .row {
        grid-template-columns: repeat(1, 1fr);
    }
}

