body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, black, #880808);
            color: white;
        }
        .title {
            text-align: center;
            font-size: 3em;
            color: white;
            margin-top: 20px;
        }
        .navbar {
            display: flex;
            align-items: center; /* Align items vertically */
            background: linear-gradient(to right, #880808, black);
            padding: 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
        }
        .navbar a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 1.2em;
            display: flex;
            align-items: center;
        }
        .navbar a i {
            margin-right: 8px;
        }
        .navbar img {
            width: 75px;
            height: 75px; /* Maintain aspect ratio */
        }
        .container {
            text-align: center;
            padding: 20px;
            padding-top: 80px; /* To prevent content from being hidden behind the fixed navbar */
        }
        h2 {
            margin-top: 20px;
            font-size: 2em;
        }
        p {
            font-size: 1.2em;
            margin: 20px 0;
        }
        .team-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            padding: 20px;
        }
        .team-member {
            background: rgba(255, 255, 255, 0.2);
            padding: 10px;
            border-radius: 10px;
            width: 23%; /* This ensures 4 items per row with some gap */
            box-sizing: border-box;
            text-align: left;
        }
        .team-member img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 10px;
        }
        .team-member ul {
            list-style: none;
            padding: 0;
            text-align: left;
        }
        .footer {
            text-align: center;
            padding: 20px;
            background: rgba(0, 0, 0, 0.8);
        }
        .footer a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 1em;
        }
        .footer img {
            vertical-align: middle;
            margin-left: 10px;
            width: 150px; 
            height: 150px;
        }
		.webmail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #cc0000; /* Crimson red */
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.webmail-button:hover {
    background-color: #a30000; /* darker red */
}
