body { 
    padding-top: 80px; /* 增加padding-top以适应放大的导航栏 */
    background: #ffffff; /* 默认白色背景，适用于所有页面 */
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* XJTLU-Software 字体放大两倍 */
.navbar-brand {
    font-size: 2.2rem !important; /* 稍微缩小字体 */
    font-weight: bold;
    display: flex;
    align-items: center;
}

/* 智能导航栏样式系统 - GSAP控制动画 */
.navbar {
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* 导航链接悬停发光效果 */
.nav-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

/* 默认样式 - 深蓝色 #052659 */
.navbar.theme-default {
    background: rgba(5, 38, 89, 0.95) !important;
    backdrop-filter: blur(8px);
}

.navbar.theme-default .navbar-brand,
.navbar.theme-default .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* 透明样式 - 用于英雄区顶部 */
.navbar.theme-transparent {
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(4px);
}

.navbar.theme-transparent .navbar-brand,
.navbar.theme-transparent .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* 浅色样式 - 用于浅色背景区域 */
.navbar.theme-light {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.theme-light .navbar-brand,
.navbar.theme-light .nav-link {
    color: #2c3e50 !important;
    text-shadow: none;
}

/* 移除hover的transition，由GSAP管理 */
.navbar.theme-light .navbar-brand:hover,
.navbar.theme-light .nav-link:hover {
    color: #4a90e2 !important;
}

/* 深色样式 - 用于深色背景区域 */
.navbar.theme-dark {
    background: rgba(45, 55, 72, 0.95) !important;
    backdrop-filter: blur(8px);
}

.navbar.theme-dark .navbar-brand,
.navbar.theme-dark .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* 主题色样式 - 用于特殊主题页面 */
.navbar.theme-accent {
    background: rgba(42, 157, 143, 0.9) !important;
    backdrop-filter: blur(8px);
}

.navbar.theme-accent .navbar-brand,
.navbar.theme-accent .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Awards 导航项 - 彩色发光效果 */
.nav-link-awards {
    position: relative;
    background: linear-gradient(120deg,
        #ff9a9e,
        #fad0c4,
        #fbc2eb,
        #a18cd1,
        #84fab0,
        #8fd3f4,
        #f9a8d4);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 0 6px rgba(248, 250, 252, 0.9));
    animation: awardsGlow 6s ease-in-out infinite;
    font-weight: 700;
}

.nav-link-awards i {
    color: inherit !important;
}

.nav-link-awards:hover {
    text-shadow: 0 0 12px rgba(255, 255, 255, 1), 0 0 24px rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 10px rgba(250, 250, 249, 1));
    transform: translateY(-1px) scale(1.02);
}

@keyframes awardsGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 滚动时的紧凑样式 */
.navbar.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .navbar-brand {
    font-size: 1.8rem !important;
}

.navbar.scrolled .logo-o {
    width: 2rem !important;
    height: 2rem !important;
}

.navbar.scrolled .logo-wrapper {
    padding: 1px !important; /* 滚动时保持相同的小内边距 */
}

/* 下拉菜单适配 */
.navbar.theme-light .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.navbar.theme-light .dropdown-item {
    color: #2c3e50;
}

.navbar.theme-light .dropdown-item:hover {
    background-color: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
}

/* 现代化下拉导航栏样式 */
.navbar .dropdown-menu {
    margin-top: 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 0;
    min-width: 200px;
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* 深色主题下拉菜单 */
.navbar.theme-dark .dropdown-menu,
.navbar.theme-default .dropdown-menu {
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.theme-dark .dropdown-item,
.navbar.theme-default .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar.theme-dark .dropdown-item::before,
.navbar.theme-default .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.2), rgba(74, 144, 226, 0.1));
    transition: width 0.3s ease;
}

.navbar.theme-dark .dropdown-item:hover::before,
.navbar.theme-default .dropdown-item:hover::before {
    width: 100%;
}

.navbar.theme-dark .dropdown-item:hover,
.navbar.theme-default .dropdown-item:hover {
    color: #ffffff;
    background: transparent;
    transform: translateX(5px);
}

/* 浅色主题下拉菜单 */
.navbar.theme-light .dropdown-item {
    color: #2c3e50;
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar.theme-light .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.1), rgba(74, 144, 226, 0.05));
    transition: width 0.3s ease;
}

.navbar.theme-light .dropdown-item:hover::before {
    width: 100%;
}

.navbar.theme-light .dropdown-item:hover {
    color: #4a90e2;
    background: transparent;
    transform: translateX(5px);
}

/* 下拉箭头动画 */
.navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* 下拉菜单分隔线 */
.navbar .dropdown-divider {
    margin: 8px 0;
    border-color: rgba(0, 0, 0, 0.05);
}

.navbar.theme-dark .dropdown-divider,
.navbar.theme-default .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

/* 下拉菜单组标题 */
.navbar .dropdown-header {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar.theme-dark .dropdown-header,
.navbar.theme-default .dropdown-header {
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式下拉菜单 */

/* 下拉菜单动画增强 */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.navbar .dropdown-menu.show {
    animation: dropdownFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 悬停时的发光效果 */
.navbar .dropdown-item:hover {
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
}

.navbar.theme-light .dropdown-item:hover::before {
    width: 100%;
}

.navbar.theme-light .dropdown-item:hover {
    color: #4a90e2;
    background: transparent;
    transform: translateX(5px);
}

/* 下拉箭头动画 */
.navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* 下拉菜单分隔线 */
.navbar .dropdown-divider {
    margin: 8px 0;
    border-color: rgba(0, 0, 0, 0.05);
}

.navbar.theme-dark .dropdown-divider,
.navbar.theme-default .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

/* 下拉菜单组标题 */
.navbar .dropdown-header {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar.theme-dark .dropdown-header,
.navbar.theme-default .dropdown-header {
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式下拉菜单 */

/* 下拉菜单动画增强 */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.navbar .dropdown-menu.show {
    animation: dropdownFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 悬停时的发光效果 */
.navbar .dropdown-item:hover {
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
}

/* 导航栏调试信息（开发时可启用） */
.navbar-debug {
    position: fixed;
    top: 90px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    z-index: 9999;
    display: none; /* 默认隐藏，需要时可显示 */
}

/* 滚动提示箭头 - GSAP控制动画 */
.scroll-indicator {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: rgba(74, 144, 226, 0.9);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

/* GSAP会控制hover状态，这里只定义目标样式 */
.scroll-indicator.hover-state {
    background: rgba(74, 144, 226, 1);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.5);
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-indicator .arrow {
    width: 24px;
    height: 24px;
    position: relative;
}

.scroll-indicator .arrow::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: translate(-50%, -60%) rotate(45deg);
}

/* GSAP会控制箭头动画，移除CSS animation */

/* 回到顶部模式 */
.scroll-indicator.back-to-top {
    background: rgba(45, 55, 72, 0.9);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.3);
}

.scroll-indicator.back-to-top:hover {
    background: rgba(45, 55, 72, 1);
    box-shadow: 0 12px 35px rgba(45, 55, 72, 0.5);
}

.scroll-indicator.back-to-top .arrow::before {
    transform: translate(-50%, -40%) rotate(-135deg);
}

/* 进度环 - GSAP控制显隐 */
.scroll-indicator .progress-ring {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(
        rgba(255, 255, 255, 0.8) 0deg,
        rgba(255, 255, 255, 0.8) var(--progress, 0deg),
        transparent var(--progress, 0deg),
        transparent 360deg
    );
    opacity: 0;
}

/* 响应式调整 */

/* logo1图片作为字母"o"的替代 */
.logo-o {
    width: 2.5rem; /* 与字体大小匹配 */
    height: 2.5rem;
    border-radius: 50%; /* 圆形，像字母o */
    object-fit: cover;
    margin: 0 2px; /* 左右间距，让它更自然地融入文字 */
    vertical-align: baseline;
    display: inline-block;
}

/* logo包装器 - 添加浅蓝色圆形背景 */
.logo-wrapper {
    display: inline-block;
    background-color: #c1e8ff; /* 浅蓝色背景 */
    border-radius: 50%; /* 圆形背景 */
    padding: 1px; /* 很小的内边距，让背景只比logo大一点点 */
    margin: 0 2px; /* 保持与原logo相同的外边距 */
    vertical-align: baseline;
    line-height: 0; /* 移除行高影响 */
}

.logo-wrapper .logo-o {
    margin: 0; /* 移除logo本身的外边距，因为包装器已经有了 */
}

/* Members页面特定样式 - 防止与导航栏重叠 */
.members-page {
    padding-top: 20px; /* 为members页面添加额外的上边距 */
}

.team-banner {
    margin-top: 30px; /* 确保banner有足够的顶部间距 */
}
.left-aligned { margin-left: auto; }

/* 导航栏项目间距 */
.navbar-nav .nav-item {
    margin-left: 15px;
    margin-right: 15px;
}

/* 在小屏幕上保持正常间距 */

.bg-dark {
    background-color: rgba(74, 144, 226, 0.5) !important;
    backdrop-filter: blur(8px); /* 增加背景模糊，保持文字可读性 */
    box-shadow: none; /* 视具体需要保留/移除 */
}

.bg-hero { background: linear-gradient(to bottom, #4a90e2 100%); }

/* CALLOUT */
.bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem }
.bd-callout h4 { margin-bottom: 1.25rem }
.bd-callout p:last-child { margin-bottom:0 }
.bd-callout code { border-radius:.25rem }
.bd-callout+.bd-callout { margin-top:-.25rem }
.bd-callout-info { border-left-color:#5bc0de }
.bd-callout-warning { border-left-color:#f0ad4e }
.bd-callout-danger { border-left-color:#d9534f }

/* footer */
footer a { color: white; font-weight: bold; text-decoration: none; }
footer a:hover { color: white; text-decoration: underline; }

/* 分子结构动画 */
.molecule {
    position: fixed;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.molecule-1 {
    top: 20%;
    left: -10%;
    animation: float1 15s infinite linear;
}

.molecule-2 {
    top: 60%;
    right: -15%;
    animation: float2 18s infinite linear;
}

.molecule-3 {
    top: 40%;
    left: 110%;
    animation: float3 12s infinite linear;
}

.molecule-4 {
    top: 110%;
    left: 30%;
    animation: float4 20s infinite linear;
}

.molecule-5 {
    top: -10%;
    right: 40%;
    animation: float5 16s infinite linear;
}

.atom {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.atom-large {
    width: 16px;
    height: 16px;
}

.bond {
    background: rgba(255, 255, 255, 0.6);
    height: 1px;
    position: absolute;
    transform-origin: left center;
}

@keyframes float1 {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(80vw) translateY(20px) rotate(360deg); opacity: 0; }
}

@keyframes float2 {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(-80vw) translateY(-30px) rotate(-360deg); opacity: 0; }
}

@keyframes float3 {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(-70vw) translateY(10px) rotate(360deg); opacity: 0; }
}

@keyframes float4 {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(20px) translateY(-80vh) rotate(-360deg); opacity: 0; }
}

@keyframes float5 {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(-30px) translateY(80vh) rotate(360deg); opacity: 0; }
}

/* 白色漂浮方块 */
.floating-cube {
    position: fixed;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.cube-1 {
    width: 12px;
    height: 12px;
    top: 15%;
    left: -5%;
    animation: cubeFloat1 14s infinite linear;
}

.cube-2 {
    width: 10px;
    height: 10px;
    top: 35%;
    right: -5%;
    animation: cubeFloat2 16s infinite linear;
}

.cube-3 {
    width: 16px;
    height: 16px;
    top: 70%;
    left: 105%;
    animation: cubeFloat3 13s infinite linear;
}

.cube-4 {
    width: 11px;
    height: 11px;
    top: -5%;
    left: 25%;
    animation: cubeFloat4 17s infinite linear;
}

.cube-5 {
    width: 14px;
    height: 14px;
    top: 55%;
    left: -5%;
    animation: cubeFloat5 19s infinite linear;
}

.cube-6 {
    width: 10px;
    height: 10px;
    top: 105%;
    right: 35%;
    animation: cubeFloat6 15s infinite linear;
}

.cube-7 {
    width: 13px;
    height: 13px;
    top: -5%;
    left: 80%;
    animation: cubeFloat7 18s infinite linear;
}

@keyframes cubeFloat1 {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateX(60vw) translateY(15px) rotate(180deg); opacity: 0; }
}

@keyframes cubeFloat2 {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateX(-70vw) translateY(-20px) rotate(-180deg); opacity: 0; }
}

@keyframes cubeFloat3 {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateX(-65vw) translateY(10px) rotate(180deg); opacity: 0; }
}

@keyframes cubeFloat4 {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateX(25px) translateY(60vh) rotate(-180deg); opacity: 0; }
}

@keyframes cubeFloat5 {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateX(70vw) translateY(-25px) rotate(180deg); opacity: 0; }
}

@keyframes cubeFloat6 {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateX(-15px) translateY(-70vh) rotate(-180deg); opacity: 0; }
}

@keyframes cubeFloat7 {
    0% { transform: translateX(0px) translateY(0px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateX(-30px) translateY(65vh) rotate(180deg); opacity: 0; }
}
/* --- 内容段落背景过渡 & 动画 --- */
.full-width-section {
    width: 100vw;
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(220,230,245,0.9));
    backdrop-filter: blur(10px);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
}

.section-dark {
    background: linear-gradient(to bottom, #1a202c, #0f1115);
    padding: 100px 0;
    color: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
    overflow: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front .member-image {
    height: 200px;
    overflow: hidden;
}

.flip-card-front .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-card-front .member-image img {
    transform: scale(1.1);
}

.flip-card-front .member-info,
.flip-card-back .member-info-back {
    padding: 15px;
}

.flip-card-front .member-name,
.flip-card-back .member-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.flip-card-front .member-role,
.flip-card-back .member-role {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.flip-card-back .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.flip-card-front .member-description,
.flip-card-back .member-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.flip-card-back .member-details {
    font-size: 0.8rem;
    margin: 15px 0;
}

.flip-card-back .member-details p {
    margin: 5px 0;
}

.member-contribution .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* 响应式设计 */

/* Faculty Advisors 样式 */
.advisor-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.advisor-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advisor-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #e3f2fd;
    transition: border-color 0.3s ease;
}

.advisor-card:hover .advisor-image {
    border-color: #667eea;
}

.advisor-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.advisor-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.advisor-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.advisor-quote {
    font-style: italic;
    color: #999;
    font-size: 0.85rem;
    border-left: 3px solid #667eea;
    padding-left: 15px;
    margin: 0;
}

/* 响应式设计 - Advisors */

.team-section {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(to bottom, #1a202c, #2d3748, #edf2f7);
    backdrop-filter: blur(8px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: #2d3748;
}

.team-section h2 {
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.content-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
    margin-top: 0;
}

/* 波浪页脚样式 */

/* 翻转卡片样式 */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}
/* 全局滚动偏移�?- 解决标题被导航栏遮挡问题 */
h1[id], h2[id], h3[id], h4[id], h5[id], h6[id] {
  scroll-margin-top: 200px !important;
}

.content-main h1, .content-main h2, .content-main h3, .content-main h4, .content-main h5 {
  scroll-margin-top: 200px !important;
}

.content-main [id] {
  scroll-margin-top: 200px !important;
}

/* ============================================
   响应式布局 - 全面支持移动设备、平板和桌面
   ============================================ */

/* 基础响应式设置 */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* 响应式容器 */
.container,
.container-fluid {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   导航栏响应式
   ============================================ */

@media (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.5rem !important;
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.2rem !important;
  }
  
  .logo-o {
    width: 1.5rem !important;
    height: 1.5rem !important;
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem !important;
  }
}

/* ============================================
   侧边栏响应式（Engineering页面等）
   ============================================ */

@media (max-width: 991.98px) {
  .content-area {
    flex-direction: column !important;
  }
  
  .sidebar {
    width: 100% !important;
    position: relative !important;
    height: auto !important;
    max-height: 300px;
    overflow-y: auto;
    border-right: none !important;
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
    margin-bottom: 1rem;
    top: 0 !important;
  }
  
  .content-main {
    padding: 1rem !important;
  }
  
  .fixed-cycle-container {
    position: relative !important;
    width: 100% !important;
    margin-bottom: 1rem;
  }
  
  .fixed-cycle-header {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .sidebar {
    max-height: 250px;
    padding: 10px 0 !important;
  }
  
  .sidebar-nav > li > a {
    padding: 10px 15px !important;
    font-size: 13px !important;
  }
  
  .sidebar-nav .sub-nav a {
    padding: 6px 15px 6px 35px !important;
    font-size: 11px !important;
  }
}

/* ============================================
   表格响应式
   ============================================ */

@media (max-width: 767.98px) {
  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  table {
    font-size: 0.85rem;
  }
  
  table th,
  table td {
    padding: 0.5rem !important;
    white-space: nowrap;
  }
  
  /* 小屏幕表格堆叠显示 */
  .table-stacked {
    display: block;
  }
  
  .table-stacked thead {
    display: none;
  }
  
  .table-stacked tbody,
  .table-stacked tr,
  .table-stacked td {
    display: block;
    width: 100%;
  }
  
  .table-stacked tr {
    border: 1px solid #dee2e6;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
  }
  
  .table-stacked td {
    border: none;
    padding: 0.5rem 0;
    text-align: left !important;
  }
  
  .table-stacked td:before {
    content: attr(data-label) ": ";
    font-weight: bold;
    display: inline-block;
    min-width: 100px;
  }
}

/* ============================================
   卡片和内容区域响应式
   ============================================ */

@media (max-width: 991.98px) {
  .card {
    margin-bottom: 1rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .row > * {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 767.98px) {
  .card-body {
    padding: 0.75rem;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .card-text {
    font-size: 0.9rem;
  }
  
  /* 多列布局改为单列 */
  .row .col-md-6,
  .row .col-md-4,
  .row .col-md-3 {
    margin-bottom: 1rem;
  }
}

/* ============================================
   文字和标题响应式
   ============================================ */

@media (max-width: 991.98px) {
  h1 {
    font-size: 2rem !important;
  }
  
  h2 {
    font-size: 1.75rem !important;
  }
  
  h3 {
    font-size: 1.5rem !important;
  }
  
  h4 {
    font-size: 1.25rem !important;
  }
  
  .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 1.75rem !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  h3 {
    font-size: 1.25rem !important;
  }
  
  h4 {
    font-size: 1.1rem !important;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* ============================================
   图片响应式
   ============================================ */

@media (max-width: 767.98px) {
  .center-img,
  .img-fluid {
    max-width: 100% !important;
    height: auto;
    margin: 1rem 0;
  }
  
  /* 图片容器 */
  .card img,
  .card-body img {
    width: 100%;
    height: auto;
  }
}

/* ============================================
   滚动标题模块响应式
   ============================================ */

@media (max-width: 991.98px) {
  .scroll-header-container {
    height: 500px !important;
  }
  
  .scroll-header-title {
    font-size: 2.5rem !important;
  }
  
  .scroll-header-subtitle {
    font-size: 1.2rem !important;
    padding: 0 1rem;
  }
}

@media (max-width: 767.98px) {
  .scroll-header-container {
    height: 400px !important;
  }
  
  .scroll-header-title {
    font-size: 2rem !important;
    margin-bottom: 1rem !important;
  }
  
  .scroll-header-subtitle {
    font-size: 1rem !important;
    padding: 0 1rem;
  }
  
  .scroll-hint {
    font-size: 0.8rem;
    bottom: 20px;
  }
}

/* ============================================
   工程页面标签页响应式
   ============================================ */

@media (max-width: 991.98px) {
  .engineering-tabs {
    flex-wrap: wrap;
  }
  
  .engineering-tabs .nav-item {
    flex: 1 1 auto;
    min-width: 120px;
  }
  
  .engineering-tabs .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    text-align: center;
  }
  
  .engineering-tabs .nav-link i {
    display: block;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 767.98px) {
  .engineering-tabs {
    flex-direction: column;
  }
  
  .engineering-tabs .nav-item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .engineering-tabs .nav-link {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.75rem;
  }
  
  .tab-main-content {
    padding: 1rem !important;
  }
  
  .cycle-iteration {
    margin-bottom: 2rem;
  }
  
  .cycle-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ============================================
   代码块响应式
   ============================================ */

@media (max-width: 767.98px) {
  pre,
  code {
    font-size: 0.8rem !important;
    overflow-x: auto;
    word-wrap: break-word;
    white-space: pre-wrap;
  }
  
  .code-card {
    margin: 1rem 0;
  }
  
  .code-card__header {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .code-copy-btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

/* ============================================
   手风琴和折叠组件响应式
   ============================================ */

@media (max-width: 767.98px) {
  .accordion-button {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
  
  .accordion-body {
    padding: 1rem;
    font-size: 0.9rem;
  }
}

/* ============================================
   徽章和标签响应式
   ============================================ */

@media (max-width: 767.98px) {
  .badges {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .badge-chip {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 1rem;
  }
  
  .badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.65rem;
  }
}

/* ============================================
   按钮响应式
   ============================================ */

@media (max-width: 767.98px) {
  .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  
  .btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
  
  .btn-sm {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
  }
}

/* ============================================
   列表响应式
   ============================================ */

@media (max-width: 767.98px) {
  ul,
  ol {
    padding-left: 1.5rem;
  }
  
  li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  .list-group-item {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

/* ============================================
   间距响应式
   ============================================ */

@media (max-width: 767.98px) {
  .mb-5 {
    margin-bottom: 2rem !important;
  }
  
  .mb-4 {
    margin-bottom: 1.5rem !important;
  }
  
  .mt-5 {
    margin-top: 2rem !important;
  }
  
  .mt-4 {
    margin-top: 1.5rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

/* ============================================
   全宽容器响应式
   ============================================ */

@media (max-width: 767.98px) {
  .scroll-header-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  
  .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ============================================
   特殊组件响应式
   ============================================ */

/* DBTL圆环响应式 */
@media (max-width: 991.98px) {
  .cycle-diagram svg {
    width: 250px !important;
    height: 250px !important;
  }
}

@media (max-width: 767.98px) {
  .cycle-diagram svg {
    width: 200px !important;
    height: 200px !important;
  }
  
  .fixed-cycle-container {
    padding: 1rem;
  }
}

/* 图表响应式 */
@media (max-width: 767.98px) {
  .chart-container {
    height: 250px !important;
  }
  
  canvas {
    max-width: 100%;
    height: auto !important;
  }
}

/* 视频响应式 */
@media (max-width: 767.98px) {
  .video-container-responsive,
  iframe,
  video {
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
  }
}

/* 模态框响应式 */
@media (max-width: 767.98px) {
  .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }
  
  .modal-content {
    border-radius: 0.5rem;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1rem;
  }
}

/* ============================================
   工具提示和弹出框响应式
   ============================================ */

@media (max-width: 767.98px) {
  .tooltip {
    font-size: 0.85rem;
  }
  
  .popover {
    max-width: 90%;
    font-size: 0.9rem;
  }
}

/* ============================================
   页脚响应式
   ============================================ */

@media (max-width: 767.98px) {
  footer {
    padding: 2rem 1rem !important;
    text-align: center;
  }
  
  footer .row {
    flex-direction: column;
  }
  
  footer .col-md-4,
  footer .col-md-6 {
    margin-bottom: 1.5rem;
    text-align: center;
  }
}

/* ============================================
   打印样式
   ============================================ */

@media print {
  .navbar,
  .sidebar,
  .fixed-cycle-container,
  .scroll-hint,
  .btn,
  .code-copy-btn {
    display: none !important;
  }
  
  .content-main {
    padding: 0 !important;
  }
  
  body {
    padding-top: 0 !important;
  }
  
  .page-break {
    page-break-after: always;
  }
}

/* ============================================
   横屏模式优化（平板）
   ============================================ */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .sidebar {
    width: 200px !important;
  }
  
  .content-main {
    padding: 1.5rem !important;
  }
  
  .scroll-header-container {
    height: 500px !important;
  }
}

/* ============================================
   大屏幕优化（4K等）
   ============================================ */

@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }
  
  .scroll-header-container {
    height: 800px;
  }
  
  .scroll-header-title {
    font-size: 4rem;
  }
  
  .scroll-header-subtitle {
    font-size: 1.8rem;
  }
}

