body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    background: lightblue;
    margin: 0;
    padding: 0;
}

.header-container {
    height: 200px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-container {
    display: grid;
    grid-template-columns: 1fr 4fr;
}


.right-container {
    align-items: center;
    justify-content: center;
    margin-right: 360px;
}

.left-container {
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 1000px;
    width: 200px;
    margin-left: 100px;
}


.bottom-container {
    justify-content: center;
    margin-bottom: 50px;
}

.left-container li {
    background-color: #dbf1f3;
    list-style-type: none;
    margin-left: -35px;
    margin-bottom: 20px;
    border: 1.5px solid #667eea;
    border-radius: 15px;
    padding: 10px;
    display: block;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.left-container a{
    padding: 10px;
    display: block;
}

.left-container li:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);

}

.team-photo {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    display: block;
    border: 3px solid #667eea;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.logo-container img {
    width: 200px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    height: auto;
    border: 1.5px solid #667eea;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 75px;
    margin-top: -275px;
}

.logo-container img:hover {
    transform: rotate(10deg) scale(1.1);
}


/*Grid style*/
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 20px;
    margin: 100px 0;
    margin-bottom: 50px;
    padding: 0 20px;
}

.member {
    background-color: #dbf1f3;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1.5px solid #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.2);
}

.member h3 {
    margin-bottom: 10px;
}

.member a {
    font-weight: 500;
    /* color: #007acc;
    text-decoration: none;
    */
}

.member a:hover {
    text-decoration: none;
    color: black;
}


a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: black;
}