@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Rethink+Sans:wght@400;500;600;700;800&display=swap");

:root {
    --sitemap-text: #122142;
    --sitemap-muted: #536686;
    --sitemap-line: #dbe6ff;
    --sitemap-accent: #1769e6;
    --sitemap-accent-strong: #0f55bc;
    --sitemap-card: #ffffff;
    --sitemap-soft: #eff5ff;
}

.sitemap-page {
    font-family: "Rethink Sans", sans-serif;
    color: var(--sitemap-text);
}

.sitemap-page a {
    color: inherit;
    text-decoration: none;
}

.sitemap-hero {
    margin-inline: calc(50% - 50vw);
    background:
        radial-gradient(circle at 85% 20%, rgba(23, 105, 230, 0.18), transparent 42%),
        linear-gradient(135deg, #f7faff, #eef4ff);
    border-bottom: 1px solid var(--sitemap-line);
    padding: 68px 0 56px;
}

.sitemap-crumb {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #d5e1fb;
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    color: #3b4d74;
    font-size: 13px;
    font-weight: 700;
}

.sitemap-crumb i {
    color: #1b63d1;
}

.sitemap-hero h1 {
    margin: 18px 0 0;
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--sitemap-text);
}

.sitemap-hero p {
    margin: 14px 0 0;
    max-width: 760px;
    color: var(--sitemap-muted);
    font-size: 18px;
    line-height: 1.6;
}

.sitemap-body {
    padding: 54px 0 80px;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.sitemap-card {
    background: var(--sitemap-card);
    border: 1px solid var(--sitemap-line);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 16px 36px rgba(23, 55, 117, 0.08);
}

.sitemap-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sitemap-card-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--sitemap-soft);
    color: var(--sitemap-accent);
    font-size: 20px;
}

.sitemap-card h2 {
    margin: 0;
    font-size: 22px;
    color: var(--sitemap-text);
}

.sitemap-card-head p {
    margin: 6px 0 0;
    color: var(--sitemap-muted);
    font-size: 15px;
    line-height: 1.55;
}

.sitemap-list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.sitemap-list li {
    margin: 0;
}

.sitemap-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--sitemap-line);
    border-radius: 14px;
    padding: 14px 16px;
    background: #fff;
    color: #20345d;
    font-size: 16px;
    font-weight: 700;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.sitemap-list a:hover {
    color: var(--sitemap-accent-strong);
    border-color: #bfd4ff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(23, 55, 117, 0.08);
}

.sitemap-list i {
    color: var(--sitemap-accent);
    font-size: 14px;
}

@media (max-width: 920px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .sitemap-hero {
        padding: 56px 0 44px;
    }

    .sitemap-hero p {
        font-size: 16px;
    }

    .sitemap-body {
        padding: 44px 0 70px;
    }

    .sitemap-card {
        padding: 20px;
        border-radius: 18px;
    }

    .sitemap-card h2 {
        font-size: 20px;
    }

    .sitemap-list a {
        padding: 13px 14px;
        font-size: 15px;
    }
}
