/* css/common.css */
        body {
            font-family: 'Roboto', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
        }

        .heading {
            word-wrap: break-word;
            font-family: 'Poppins', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Helvetica Neue', 'Arial', 'Noto Sans', 'sans-serif', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
            white-space: nowrap;
        }

        .info-text {
            margin-bottom: 10px;
        }

        .university-color {
            color: #990000;
        }

        .link-list a {
            margin-right: 5px;
        }

        .content-spacing {
            margin-top: 30px;
        }

        .headshot {
            max-width: 105%;
            height: auto;
            margin: 0 auto;
            display: block;
        }


        a {
            color: #2B5597;
        }

        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

        .team-section {
            text-align: center;
            margin-top: 50px;
        }

        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin-bottom: 15px;
        }

        .team-member {
            margin-bottom: 30px;
        }

        .team-member h3 {
            font-size: 20px; /* Adjust this value as needed */
        }

        .team-member p {
            margin-bottom: 5px; /* Reduce the bottom margin */
        }

        .member-status {
            font-style: italic;
            color: #666; /* You can change this color to suit your design */
        }

        .sponsors-section {
        padding: 2rem 0;
        text-align: center;
        }
        .sponsor-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }
        .sponsor-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 200px;
            height: 100px;
        }
        .sponsor-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }