        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');


        body {
            font-family: 'Inter', sans-serif;
            background-color: #F5F5F5;
            color: #36454F;
            line-height: 1.4;
            text-align: justify;
        }

        header {
            background-color: #0072B6;
            color: white;
            padding: 20px;
            text-align: center;
        }

        <!-- #2D73C2; ->

         header h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 52px; /* Adjust font size as needed */
            font-weight: 700;
            line-height: 1.2;
        }

        header h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 22px; /* Adjust font size as needed */
            font-weight: 600;
            margin-top: 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            padding: 10px;
            margin: 0 auto;
            max-width: 800px;
        }


        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap; /* Allow items to wrap to the next line */          
            text-align: justify;
            justify-content: center; /* Center the items horizontally */
        }

        nav ul li {
            min-width: 25%;
            margin: 10 10px;
            text-align: center;
            display: flex;
        }

        nav ul li a {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-basis: 30%; /* Set initial size to 30% of container */
            flex-grow: 1; /* Allow items to grow to fill available space */
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            background-color: #F5F5F5;
            color: #0072B6;
            text-decoration: none;
            border: 1px solid #36454F;
            margin: 5px;

            /* Hover state */
            &:hover {
                background-color: #0072B6;
                color: #F5F5F5;
                }
            }    


        main {
            padding: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        main a {
            color: #008080;
            text-decoration: none;
            font-weight: bold;

            /* Hover state */
            &:hover {
                color: #0072B6;
                }
        }

        section {
            margin-bottom: 20px;
        }

        footer {
            background-color: #0072B6;
            color: white;
            padding: 10px;
            text-align: center;
        }
        .member-list {
            margin: 0; /* Remove any margin from the list itself */
            padding: 0; /* Remove any padding from the list */
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .member-item {
            text-align: center;
            margin: 10px;
        }

        .member-photo {
            width: 150px; /* Adjust the width as needed */
            height: 150px; /* Adjust the height as needed */
            object-fit: cover; /* Ensure the image fills the container */
            border-radius: 50%;
        }
         .member-role {
            color: #888888; /* Adjust the color as needed */
        }
         .member-name {
            font-weight: bold;
        }
        .member-name a {
            color: #0072B6;
            text-decoration: none;

                 &:hover {
                color: #008080;
                }
        }
        .past-members {
            color: #71797E;
            font-size: 16px;
        }
         section h2 {
            font-size: 28px;
            font-weight: 600;
            color: #FFFFFF;
            background-color: #0072B6; /* Adjusted background color */
            padding: 15px;
            margin-bottom: 20px;
            text-align: left; /* Align text to the left */
            border-radius: 10px;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .talktitle{
            color: #0072B6;
            font-weight: bold;
        }

        .collapsible {
            background-color: #d9d9d9;
            text-align: center;
            font-weight: bold;
            color:  #0072B6;
            cursor: pointer;
            padding: 3px;
            width: 5em;
            border: none;
            outline: none;
            font-size: 14px;
            border-radius: 6px;
         }
        
        .active, .collapsible:hover {
            color: white;
            background-color: #0072B6;
        }

        .content {
            font-size: 14px;
            padding: 0 18px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s ease-out;
            background-color: #f1f1f1;
        }
        
        
        @media (max-width: 700px) {
            nav {
                display: flex;
                flex-direction: column;
                align-items: center;
                }
            .member-item {
                margin: 2px;
            }    

        }   