        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
            color: #333;
        }
        header {
            background-color: #4CAF50;
            color: white;
            text-align: center;
            padding: 20px 0;
        }
        main {
            padding: 40px 20px;
            background-color: #fff;
            max-width: 1000px;
            margin: 20px auto;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        h1 {
            font-size: 2.5rem;
            color: #4CAF50;
            margin-bottom: 20px;
        }
        h2 {
            font-size: 1.8rem;
            color: #333;
            margin-top: 30px;
        }
        p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        .team {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .team-member {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            width: calc(33.33% - 20px);
            text-align: center;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .team-member img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin-bottom: 15px;
        }
        footer {
            text-align: center;
            background-color: #ffffff;
            color: white;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
			font-size: 0.8rem;
        }