.single-page .breadcrumb {
    padding: 24px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.single-page .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: #64748b
}

.single-page .breadcrumb-nav a {
    color: #075b5e;
    text-decoration: none
}

.single-page .breadcrumb-nav a:hover {
    text-decoration: underline
}

.single-page .breadcrumb-sep {
    color: #94a3b8;
    margin: 0 4px
}

.single-page .legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.single-page .legal-sidebar {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 24px 20px;
    position: sticky;
    top: 160px;
    z-index: 10;
}

.single-page .legal-sidebar-title {
    font-size: 1rem;
    font-weight: 800;
    color: #075B5E;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-page .legal-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.single-page .legal-link {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: .95rem;
    color: #334155;
    text-decoration: none;
    transition: all .2s ease;
}

.single-page .legal-link:hover {
    background: #f1f5f9;
    color: #075B5E;
    transform: translateX(4px);
}

.single-page .legal-link.is-active {
    background: #075B5E;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(7, 91, 94, 0.2);
}

.single-page .legal-content {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.single-page .legal-cover {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.single-page .legal-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.single-page .legal-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
    max-width: 900px;
}

.single-page .legal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.single-page .legal-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.5;
}

.single-page .legal-body p {
    margin-bottom: 24px;
}

.single-page .legal-body h2 {
    font-size: 1.5rem;
    color: #0f172a;
    margin: 40px 0 16px;
    font-weight: 800;
}

.single-page .legal-body h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin: 30px 0 12px;
    font-weight: 700;
}

.single-page .legal-body ul,
.single-page .legal-body ol {
    margin: 20px 0 30px;
    padding-left: 25px;
}

.single-page .legal-body li {
    margin-bottom: 12px;
    position: relative;
}

@media (max-width: 900px) {
    .single-page .legal-layout {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .single-page .legal-sidebar {
        position: static;
        order: 2;
    }

    .single-page .legal-content {
        order: 1;
    }
}