.research-team-title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #2C3E50;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}
.people-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.advisor-card {
    display: flex;
    flex-direction: column; /* Change to column to stack items vertically */
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    justify-content: center; /* Center align each line */
    text-align: center; /* Center align text */
    width: calc(100% - 40px); /* Adjust width to fit one card per row */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.advisor-basic-info {
    display: flex;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.advisor-card .description {
    width: 100%; /* Make description take 100% width */
    margin-top: 20px; /* Add some space between the description and the previous element */
    text-align: left;
}

.advisor-card::before, .advisor-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: -1;
}

.advisor-card::before {
    top: -50%;
    left: 0;
    transform: rotate(45deg);
    border-bottom: none;
    border-right: none;
}

.advisor-card::after {
    bottom: -50%;
    left: 0;
    transform: rotate(-45deg);
    border-top: none;
    border-left: none;
}
.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.person-card {
    display: flex;
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
    width: calc(50% - 20px); /* Adjust width to fit two cards per row */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.person-card::before, .person-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: -1;
}

.person-card::before {
    top: -50%;
    left: 0;
    transform: rotate(45deg);
    border-bottom: none;
    border-right: none;
}

.person-card::after {
    bottom: -50%;
    left: 0;
    transform: rotate(-45deg);
    border-top: none;
    border-left: none;
}
.person-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.image-container {
    flex: 0 0 auto;
    margin-right: 20px;
}
.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.info-container {
    flex: 1 1 auto;
}
.person-name {
    font-size: 24px;
    color: #37ac9a;
    font-weight: bold;
    margin: 0 0 10px;
}
.position {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
}
.links a {
    margin-right: 10px;
}
.email a {
    text-decoration: none;
    color: #555;
}
.email img {
    vertical-align: middle;
    margin-right: 5px;
}
.achievements, .highlights {
    margin-top: 10px;
}
.achievements h3, .highlights h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2C3E50;
}
.achievements ul, .highlights ul {
    list-style-type: disc;
    margin-left: 20px;
    font-size: 14px;
    color: #555;
}
.achievements li, .highlights li {
    margin-bottom: 3px;
}