    .about-hero {
        background: linear-gradient(135deg, #00198c, #3a0ca3);
        color: white;
        padding: 5rem 0 4rem;
    }
    .about-hero h1 { font-size: 2.8rem; font-weight: 700; }
    .about-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 620px; margin: 0 auto; }

    .about-body p {
        font-size: 1rem;
        line-height: 1.85;
        color: #4a5568;
    }

    .value-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        height: 100%;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
    .value-icon {
        width: 56px; height: 56px;
        border-radius: 12px;
        background: linear-gradient(135deg, #00198c, #3a0ca3);
        color: white;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }

    .stat-box {
        background: linear-gradient(135deg, #00198c, #3a0ca3);
        color: white;
        border-radius: 16px;
        padding: 2.5rem 1.5rem;
        text-align: center;
    }
    .stat-box .num { font-size: 2.5rem; font-weight: 800; }
    .stat-box .lbl { font-size: 1rem; opacity: 0.85; margin-top: 0.25rem; }

    .story-section { background: #f8f9ff; }
    .founder-avatar {
        width: 100px; height: 100px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #00198c;
        box-shadow: 0 4px 16px rgba(0,25,140,0.18);
    }
    .founder-avatar img {
        width: 100%; height: 100%;
        object-fit: cover;
        display: block;
    }
    .pain-point {
        border-left: 4px solid #3a0ca3;
        padding: 1rem 1.25rem;
        background: white;
        border-radius: 0 12px 12px 0;
        margin-bottom: 1rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .pain-point p { font-size: 0.9rem; margin-bottom: 0; color: #4a5568; }

    .source-credit-section { background: #f8f9ff; }
    .source-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 50px;
        padding: 0.5rem 1.1rem;
        font-size: 0.9rem;
        font-weight: 500;
        color: #2d3748;
        text-decoration: none;
        transition: box-shadow 0.2s, transform 0.2s;
    }
    .source-pill:hover {
        box-shadow: 0 4px 16px rgba(0,25,140,0.12);
        transform: translateY(-2px);
        color: #00198c;
        text-decoration: none;
    }
    .source-pill .dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: linear-gradient(135deg, #00198c, #3a0ca3);
        flex-shrink: 0;
    }