 /* Story Section */
        .story-section { background: white; }
        .story-text { font-size: 1.05rem; color: #555; margin-bottom: 20px; }
        .story-highlight { color: var(--brand-teal); font-weight: 700; font-size: 1.2rem; margin-top: 30px; margin-bottom: 15px; display: block; }
        
        /* Team Section */
        .team-section { background-color: #f9f9f9; }
        
        /* Single Column Grid for horizontal cards */
        .team-grid { 
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 50px; 
        }

        /* Horizontal Team Card */
        .team-card {
            background: white;
            border-radius: 4px; 
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid transparent; /* Changed border to left side for this layout */
            display: flex;
            flex-direction: row; /* Horizontal Layout */
            align-items: stretch;
            min-height: 350px;
        }

        .team-card:hover {
            transform: translateX(5px); /* Slight slide right */
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-left-color: var(--brand-red);
        }

        /* Text Area (Left) */
        .team-body { 
            padding: 40px; 
            flex: 1; /* Takes available space */
            order: 1; /* Puts text on the LEFT */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Image Area (Right) */
        .team-img-wrap {
            width: 400px; /* Fixed width for image column */
            flex-shrink: 0;
            order: 2; /* Puts image on the RIGHT */
            position: relative;
            overflow: hidden;
        }

        .team-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-img-wrap img { transform: scale(1.05); }
        
        /* Typography */
        .team-name {
            font-family: var(--font-head);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .team-role {
            font-size: 1rem;
            color: var(--brand-red);
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 25px;
            display: block;
        }

        .team-stats-list {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.95rem;
            color: #555;
        }

        .team-stats-list li {
            margin-bottom: 12px;
            padding-bottom: 5px;
            border-bottom: 1px solid #f0f0f0;
            line-height: 1.6;
        }

        .team-stats-list li:last-child { border-bottom: none; margin-bottom: 0; }
        
        .stat-label { color: var(--brand-teal); font-weight: 700; margin-right: 5px; }

        .team-quote {
            margin-top: 20px;
            font-style: italic;
            color: #888;
            font-size: 0.9rem;
            background: #f4f4f4;
            padding: 15px;
            border-left: 3px solid var(--brand-teal);
            border-radius: 0 4px 4px 0;
        }

        /* Mobile Responsive */
        @media (max-width: 900px) {
            .team-card {
                flex-direction: column; /* Stack vertically on mobile */
                border-left: none;
                border-bottom: 4px solid transparent;
            }
            .team-card:hover {
                transform: translateY(-5px);
                border-bottom-color: var(--brand-red);
            }
            
            .team-img-wrap {
                width: 100%;
                height: 350px;
                order: 1; /* Image on Top for Mobile */
            }
            
            .team-body {
                order: 2; /* Text on Bottom for Mobile */
                padding: 25px;
            }
        }