.team {
            background-color: var(--light-blue);
            padding: 80px 0;
        }

        .team-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            
        }

        .team-header h1 {
            font-size: 3rem;
            color: var(--primary);
            margin-top: 60px;
            margin-bottom: 15px;
        }

        .team-header p {
            font-size: 1.1rem;
            color: var(--text);
            opacity: 0.9;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .team-member {
            background: var(--light);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .member-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-member:hover .member-image img {
            transform: scale(1.05);
        }

        .member-social {
            position: absolute;
            bottom: 15px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 15px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .team-member:hover .member-social {
            opacity: 1;
            transform: translateY(0);
        }

        .member-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .member-social a:hover {
            background: var(--secondary);
            color: white;
            transform: translateY(-3px);
        }

        .member-info {
            padding: 25px;
        }

        .member-info h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .member-role {
            display: block;
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .member-info p {
            color: var(--text);
            line-height: 1.6;
        }
    