/* About-us page — elegant, simple, professional (scoped to .page-about-us) */

/* ── Hero ─────────────────────────────────────────────── */
.page-about-us .page-header.bg-dark {
    background:
        radial-gradient(900px 340px at 82% -20%, rgba(23, 92, 255, 0.22), transparent 60%),
        linear-gradient(158deg, #0b163f 0%, #0a1330 100%) !important;
    padding-top: 5rem;
    padding-bottom: 5.5rem;
}

/* Tone down the decorative circle so the hero stays clean */
.page-about-us .page-header .bg-circle {
    opacity: 0.25;
    filter: blur(1px);
}

.page-about-us .page-header .container {
    position: relative;
    z-index: 2;
}

.page-about-us .page-header h1 {
    font-size: clamp(2rem, 4.5vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 1.15rem;
}

/* Registration lead → refined trust statement */
.page-about-us .page-header .lead {
    position: relative;
    z-index: 111111;
    display: inline-block;
    max-width: 46rem;
    font-size: 1.02rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.86) !important;
    padding: 1.05rem 1.35rem 1.05rem 3.35rem;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
}

.page-about-us .page-header .lead::before {
    content: "";
    position: absolute;
    inset-inline-start: 1.05rem;
    top: 1.1rem;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2358a6ff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

html[dir="rtl"] .page-about-us .page-header .lead {
    padding: 1.05rem 3.35rem 1.05rem 1.35rem;
}

/* ── Content card ─────────────────────────────────────── */
.page-about-us .legal-page {
    background: #f7f9fc;
}

.page-about-us .legal-page__card {
    position: relative;
    margin-top: -3rem;
    border: 1px solid rgba(11, 22, 63, 0.07);
    border-radius: 1.25rem;
    box-shadow: 0 24px 64px rgba(11, 22, 63, 0.1);
    overflow: hidden;
}

.page-about-us .legal-page__card::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 3px;
    background: linear-gradient(90deg, #175cff, #0b163f);
}

.page-about-us .legal-page__body {
    padding-top: 2.75rem;
}

/* Main title */
.page-about-us .legal-page__body h2 {
    font-size: 1.55rem;
    font-weight: 800;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0.5rem;
}

/* Section headings — quiet accent line */
.page-about-us .legal-page__body h3 {
    position: relative;
    font-size: 1.18rem;
    font-weight: 700;
    padding-inline-start: 0.8rem;
    margin-top: 2.4rem;
    margin-bottom: 0.9rem;
}

.page-about-us .legal-page__body h3::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.2em;
    bottom: 0.2em;
    width: 3px;
    border-radius: 3px;
    background: #175cff;
}

.page-about-us .legal-page__body p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #3a4759;
}

/* Service list — clean, understated rows */
.page-about-us .legal-page__body ul {
    display: grid;
    gap: 0.55rem;
}

.page-about-us .legal-page__body ul li {
    margin: 0;
    padding: 0.8rem 1.1rem 0.8rem 2.4rem;
    background: #fbfcfe;
    border: 1px solid rgba(11, 22, 63, 0.07);
    border-radius: 12px;
    line-height: 1.7;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.page-about-us .legal-page__body ul li:hover {
    border-color: rgba(23, 92, 255, 0.35);
    background: #fff;
}

.page-about-us .legal-page__body ul li::before {
    width: 7px;
    height: 7px;
    background: #175cff;
    top: 1.35em;
    inset-inline-start: 1.05rem;
}

html[dir="rtl"] .page-about-us .legal-page__body ul li {
    padding: 0.8rem 2.4rem 0.8rem 1.1rem;
}

.page-about-us .legal-page__body ul li strong {
    display: block;
    margin-bottom: 0.1rem;
    color: #0b163f;
    font-weight: 700;
}

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 575.98px) {
    .page-about-us .page-header.bg-dark {
        padding-top: 3.25rem;
        padding-bottom: 4rem;
    }

    .page-about-us .page-header .lead {
        font-size: 0.95rem;
    }

    .page-about-us .legal-page__card {
        margin-top: -2.25rem;
    }
}
