.about-hero {
    background: linear-gradient(180deg, #f9f8ff 0%, #ffffff 100%);
}
.about-content {
    max-width: 760px;
}
.about-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #ef7f1a;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.about-heading {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 600;
    line-height: 1.02;
    color: #1f1f46;
    margin-bottom: 1.8rem;
}
.about-description p {
    color: #4f5167;
    font-size: 1.03rem;
    line-height: 1.95;
    margin-bottom: 1.35rem;
}
.about-figure {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 560px;
}
.about-figure-card {
    background: #ffffff;
    border-radius: 38px;
    box-shadow: 0 30px 60px rgba(31, 29, 59, 0.12);
    position: relative;
    overflow: hidden;
}
.about-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}
.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 30px;
}
.about-figure-card::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: rgba(239, 127, 26, 0.16);
    border-radius: 30px;
}
.about-figure-card::after {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 70px;
    height: 70px;
    background: rgba(45, 27, 100, 0.12);
    border-radius: 24px;
}
@media (max-width: 991.98px) {
    .about-figure {
        min-height: auto;
        margin-top: 2rem;
    }
}
@media (max-width: 767.98px) {
    .about-heading {
        font-size: 2.6rem;
    }
    .about-description p {
        font-size: 0.98rem;
    }
    .about-figure-card {
        padding: 1.8rem;
    }
}