body {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    background: #ffffff;
    color: #171717;
}

.navbar-top {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    z-index: 1050;
}

.about-main {
    padding-top: 108px;
    padding-bottom: 54px;
}

.about-showcase {
    max-width: 1140px;
    text-align: center;
}

.about-showcase h1 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.1;
    font-weight: 500;
}

.about-showcase h1 span {
    color: #0b5ed7;
}

.showcase-copy {
    max-width: 860px;
    margin: 0 auto 18px;
    font-size: 17px;
    line-height: 1.55;
}

.profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0b5ed7;
    color: #fff !important;
    border-radius: 999px;
    padding: 11px 24px;
    font-size: 15px;
    font-weight: 600;
}

.showcase-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 0.42fr 1fr;
    gap: 14px;
    align-items: stretch;
}

.showcase-image {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: contain;
    object-position: center center;
    border-radius: 0;
    display: block;
}

.showcase-stats {
    background: #0b5ed7;
    color: #fff;
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
}

.showcase-stats article {
    display: grid;
    place-items: center;
    align-content: center;
    padding: 20px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.showcase-stats article:last-child {
    border-bottom: 0;
}

.showcase-stats h3 {
    margin: 0;
    font-size: clamp(30px, 2.4vw, 44px);
    line-height: 1;
    font-weight: 700;
}

.showcase-stats p {
    margin: 8px 0 0;
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.25;
}

.about-details {
    max-width: 1140px;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.detail-card {
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 18px;
    padding: 22px 22px 18px;
}

.detail-card h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 2.8vw, 48px);
    color: #0b5ed7;
}

.detail-card p,
.detail-card li {
    font-size: 18px;
    line-height: 1.6;
}

.detail-card ul,
.detail-card ol {
    margin: 0;
    padding-left: 24px;
}

.detail-wide {
    grid-column: 1 / -1;
}

.about-stream {
    max-width: 1140px;
    margin-top: 28px;
    padding: 20px 0 6px;
    position: relative;
}

.about-stream::before {
    content: "";
    position: absolute;
    inset: 18px 0 auto 0;
    height: 260px;
    background: repeating-linear-gradient(
        -6deg,
        rgba(11, 94, 215, 0.07) 0 1px,
        transparent 1px 14px
    );
    z-index: 0;
    pointer-events: none;
}

.stream-top,
.stream-cards {
    position: relative;
    z-index: 1;
}

.stream-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    margin-bottom: 26px;
}

.stream-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #0b5ed7;
    border-radius: 999px;
    color: #0b5ed7;
    padding: 6px 14px;
    font-size: 15px;
    font-weight: 500;
}

.stream-pill i {
    font-size: 20px;
    line-height: 1;
}

.stream-left h2 {
    margin: 16px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.18;
    color: #0b5ed7;
    font-weight: 500;
    max-width: 640px;
}

.stream-right p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.55;
}

.stream-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.stream-card {
    background: #f4f4f4;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    padding: 20px;
}

.stream-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e6e6e6;
    display: grid;
    place-items: center;
    color: #0b5ed7;
    font-size: 24px;
    margin-bottom: 14px;
}

.stream-card h3 {
    margin: 0 0 8px;
    font-size: 26px;
    color: #171717;
}

.stream-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .about-main {
        padding-top: 110px;
    }

    .showcase-copy {
        font-size: 16px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-image {
        min-height: 320px;
    }

    .showcase-image img {
        max-height: 380px;
    }

    .showcase-stats {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }

    .showcase-stats article {
        border-bottom: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        padding: 14px 8px;
    }

    .showcase-stats article:last-child {
        border-right: 0;
    }

    .about-details {
        grid-template-columns: 1fr;
    }

    .detail-wide {
        grid-column: auto;
    }

    .stream-top,
    .stream-cards {
        grid-template-columns: 1fr;
    }

    .stream-card h3 {
        font-size: 30px;
    }
}
