        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f4f7fc;
            text-align: center;
            padding: 50px 0;
        }

        .team-section {
            padding: 50px 20px;
        }

        .team-section h2 {
            font-weight: 700;
            color: #007bff;
            margin-bottom: 30px;
        }

        .team-card {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease-in-out;
            text-align: center;
        }

        .team-card:hover {
            transform: scale(1.05);
        }

        .team-card .profile-svg {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 3px solid #007bff;
            background-color: #f4f7fc;
            padding: 10px;
            margin-bottom: 15px;
        }

        .team-card h5 {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .team-card p {
            color: #555;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .team-card .social-icons a {
            color: #007bff;
            font-size: 20px;
            margin: 0 8px;
            transition: color 0.3s;
        }

        .team-card .social-icons a:hover {
            color: #0056b3;
        }
    