.about-hero {
            position: relative;
            width: 100%;
            background: linear-gradient(135deg, #E53E3E 0%, #C73030 100%);
            color: #ffffff;
            padding: 52px 34px;
            text-align: center;
            margin-bottom: 40px;
            overflow: hidden;
        }
        .about-hero-eyebrow {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            background: rgba(255, 255, 255, .18);
            padding: 6px 18px;
            border-radius: 40px;
            margin-bottom: 18px;
        }
        .about-hero h1 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1.12;
            margin-bottom: 10px;
        }
        .about-hero-sub {
            font-size: 17px;
            font-weight: 600;
            opacity: .96;
            margin: 0;
        }
        .about-split {
            display: flex;
            flex-wrap: wrap;
            gap: 34px;
            align-items: stretch;
            margin-bottom: 10px;
        }
        .about-image-col {
            flex: 1 1 380px;
        }
        .about-image-frame {
            position: sticky;
            top: 90px;
            height: 100%;
            min-height: 320px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 16px 34px rgba(15, 23, 42, .12);
        }
        .about-image-frame img {
            width: 100%;
            height: 100%;
            min-height: 320px;
            object-fit: cover;
            display: block;
        }
        .about-content-col {
            flex: 1 1 420px;
        }
        .about-content-card {
            height: 100%;
            background: #ffffff;
            border: 1px solid #eef1f5;
            border-radius: 16px;
            padding: 32px 30px;
            box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
        }
        .about-content-card p {
            font-size: 15.5px;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 18px;
        }
        .about-content-card p:last-child {
            margin-bottom: 0;
        }
        .about-content-card p:first-of-type {
            font-size: 17px;
            font-weight: 600;
            color: #1f2937;
        }
        @media (max-width: 767px) {
            .about-hero { padding: 38px 20px; }
            .about-hero h1 { font-size: 26px; }
            .about-hero-sub { font-size: 15px; }
            .about-image-frame { position: static; min-height: 220px; }
            .about-image-frame img { min-height: 220px; }
            .about-content-card { padding: 24px 20px; }
        }
