 body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f6f8;
            color: #333;
        }

        .teamheader {
            background-color: #0C2239;
            color: #F47421;
            padding: 40px 0;
            text-align: center;
        }

        .teamheader h1 {
            margin: 0;
            font-size: 2.8em;
        }

        .teamheader p {
            font-size: 1.2em;
            margin-top: 10px;
            color: #F47421;
        }

        /* Team Section */
        .team-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: auto;
        }

        .team-section h2 {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        .team-section p {
            text-align: center;
            font-size: 1.1em;
            margin-bottom: 50px;
            color: #555;
        }

        .team-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .team-member {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            width: 250px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.2);
        }

        .team-member img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .member-info {
            padding: 20px;
            text-align: center;
        }

        .member-info h3 {
            margin: 10px 0 5px 0;
            font-size: 1.5em;
            color: #0C2239;
        }

        .member-info p {
            margin: 5px 0;
            font-size: 1em;
            color: #666;
        }

        .member-info .role {
            font-weight: bold;
            color: #222;
        }

       

        /* Responsive */
        @media(max-width: 768px){
            .team-container {
                flex-direction: column;
                align-items: center;
            }
        }
