/* ════════════════════════════════════════════════
           ABOUT US PAGE STYLES
           ════════════════════════════════════════════════ */

        .about-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 2rem 4rem;
        }

        /* ── Hero / Intro ── */
        .about-hero {
            text-align: center;
            margin-bottom: 4rem;
        }
        .about-hero .tag {
            display: inline-block;
            background: rgba(186, 23, 40, 0.15);
            color: #ba1728;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.3rem 1.2rem;
            border-radius: 100px;
            border: 1px solid rgba(186, 23, 40, 0.2);
            margin-bottom: 1rem;
        }
        .about-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 1.2rem;
        }
        .about-hero h1 span {
            color: #ba1728;
        }
        .about-hero p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: rgba(25, 25, 25, 0.7);
            max-width: 750px;
            margin: 0 auto;
        }

        /* ── Mission & Story (two columns) ── */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            margin: 3rem 0 4rem;
        }
        .about-card {
            background: #1a1a1a;
            border-radius: 24px;
            padding: 2.5rem 2.2rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s ease;
        }
        .about-card:hover {
            border-color: rgba(186, 23, 40, 0.25);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
            transform: translateY(-4px);
        }
        .about-card .icon-wrap {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(186, 23, 40, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #ba1728;
            margin-bottom: 1.2rem;
        }
        .about-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.6rem;
        }
        .about-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
        }

        /* ── Team Section ── */
        .team-section {
            margin-top: 4rem;
        }
        .team-section .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .team-section .section-sub {
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 1rem;
            margin-bottom: 2.5rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .team-member {
            background: #1a1a1a;
            border-radius: 24px;
            padding: 2.5rem 1.8rem 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }
        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #ba1728;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .team-member:hover {
            transform: translateY(-8px);
            border-color: rgba(186, 23, 40, 0.25);
            box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
        }
        .team-member:hover::before {
            transform: scaleX(1);
        }

        .team-member .avatar {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: rgba(186, 23, 40, 0.12);
            margin: 0 auto 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.2rem;
            color: #ba1728;
            border: 3px solid rgba(186, 23, 40, 0.15);
            transition: all 0.4s ease;
        }
        .team-member:hover .avatar {
            background: rgba(186, 23, 40, 0.2);
            border-color: #ba1728;
            transform: scale(1.05) rotate(-4deg);
            box-shadow: 0 0 40px rgba(186, 23, 40, 0.15);
        }
        .team-member h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.2rem;
        }
        .team-member .role {
            font-size: 0.85rem;
            color: #ba1728;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 0.6rem;
        }
        .team-member p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.5;
            max-width: 200px;
            margin: 0 auto;
        }
        .team-member .social-links {
            margin-top: 1.2rem;
            display: flex;
            justify-content: center;
            gap: 0.8rem;
        }
        .team-member .social-links a {
            color: rgba(255, 255, 255, 0.2);
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 0.3rem 0.5rem;
            border-radius: 8px;
        }
        .team-member .social-links a:hover {
            color: #ba1728;
            background: rgba(186, 23, 40, 0.08);
        }

        /* ── Responsive About ── */
        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            .about-wrapper {
                padding: 1rem 1rem 3rem;
            }
            .about-hero h1 {
                font-size: 2.2rem;
            }
            .about-hero p {
                font-size: 1rem;
            }
            .team-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .team-member p {
                max-width: 100%;
            }
            .about-card {
                padding: 1.8rem 1.5rem;
            }
            .team-section .section-title {
                font-size: 1.8rem;
            }
        }