.ib-about-page{
    width:100%;
    padding:38px 20px 60px;
    background:#fff;
}

.ib-about-page__inner{
    width:100%;
    max-width:1180px;
    margin:0 auto;
}

.ib-about-page__hero{
    max-width:900px;
    margin:0 auto 38px;
    text-align:center;
}

.ib-about-page__eyebrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin:0 0 14px;
    padding:8px 18px;
    border-radius:999px;
    background:rgba(59,89,152,.10);
    color:#3B5998;
    font-family:Inter, system-ui, sans-serif;
    font-size:14px;
    font-weight:800;
    letter-spacing:.02em;
}

.ib-about-page__title{
    margin:0;
    color:#3B5998;
    font-family:Georgia, "Times New Roman", serif;
    font-size:44px;
    font-weight:700;
    line-height:1.12;
}

.ib-about-page__intro{
    max-width:820px;
    margin:22px auto 0;
    color:#1f2937;
    font-family:Inter, system-ui, sans-serif;
    font-size:20px;
    line-height:1.7;
}

.ib-about-page__blocks{
    display:flex;
    flex-direction:column;
    gap:26px;
}

.ib-about-card{
    position:relative;
    display:grid;
    grid-template-columns:minmax(0, 1fr) 360px;
    gap:30px;
    padding:34px;
    border:1px solid rgba(59,89,152,.16);
    border-radius:30px;
    background:linear-gradient(135deg, #fff, #f8fbff);
    box-shadow:0 18px 44px rgba(18,35,68,.08);
    overflow:hidden;
}

.ib-about-card::before{
    content:"";
    position:absolute;
    inset:0 auto 0 0;
    width:6px;
    background:#3B5998;
    opacity:.88;
}

[dir="rtl"] .ib-about-card::before{
    inset:0 0 0 auto;
}

.ib-about-card__title{
    margin:0 0 18px;
    color:#0f2442;
    font-family:Georgia, "Times New Roman", serif;
    font-size:34px;
    line-height:1.18;
}

.ib-about-card__content{
    color:#1f2937;
    font-family:Inter, system-ui, sans-serif;
    font-size:18px;
    line-height:1.75;
}

.ib-about-card__content p{
    margin:0 0 20px;
}

.ib-about-card__content p:last-child{
    margin-bottom:0;
}

.ib-about-card__content ul{
    margin:14px 0 24px;
    padding-left:22px;
}

[dir="rtl"] .ib-about-card__content ul{
    padding-left:0;
    padding-right:22px;
}

.ib-about-card__content li{
    margin:0 0 10px;
}

.ib-about-card__content strong{
    color:#111827;
    font-weight:800;
}

.ib-about-card__quote{
    align-self:start;
    padding:24px;
    border-radius:24px;
    background:#fff;
    border:1px solid rgba(59,89,152,.14);
    box-shadow:0 12px 30px rgba(18,35,68,.07);
}

.ib-about-card__quote-label{
    display:block;
    margin:0 0 14px;
    color:#3B5998;
    font-family:Inter, system-ui, sans-serif;
    font-size:14px;
    font-weight:800;
}

.ib-about-card__quote blockquote{
    margin:0;
    color:#0f2442;
    font-family:Georgia, "Times New Roman", serif;
    font-size:22px;
    font-weight:700;
    line-height:1.45;
}

.ib-about-card__quote cite{
    display:block;
    margin-top:16px;
    color:#5b6c86;
    font-family:Inter, system-ui, sans-serif;
    font-size:15px;
    font-style:normal;
    font-weight:800;
}

.ib-about-card--final{
    background:linear-gradient(135deg, #f7faff, #ffffff);
}

.ib-about-card--final .ib-about-card__title{
    color:#3B5998;
}

@media (max-width:900px){
    .ib-about-page{
        padding:30px 16px 48px;
    }

    .ib-about-page__title{
        font-size:36px;
    }

    .ib-about-page__intro{
        font-size:18px;
    }

    .ib-about-card{
        grid-template-columns:1fr;
        gap:22px;
        padding:28px 24px;
        border-radius:26px;
    }

    .ib-about-card__title{
        font-size:30px;
    }

    .ib-about-card__content{
        font-size:17px;
    }
}

@media (max-width:600px){
    .ib-about-page__hero{
        margin-bottom:28px;
    }

    .ib-about-page__title{
        font-size:31px;
    }

    .ib-about-page__intro{
        font-size:16.5px;
        line-height:1.65;
    }

    .ib-about-card{
        padding:26px 20px;
    }

    .ib-about-card__title{
        font-size:28px;
        text-align:center;
    }

    .ib-about-card__content{
        font-size:16.5px;
        line-height:1.7;
    }

    .ib-about-card__quote{
        padding:20px;
        border-radius:22px;
    }

    .ib-about-card__quote blockquote{
        font-size:20px;
        text-align:center;
    }

    .ib-about-card__quote-label,
    .ib-about-card__quote cite{
        text-align:center;
    }
}