/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; /* 防止手机端横向滚动 */
    padding-top: 120px; /* 确保页面内容不被导航栏覆盖 */
}

/* 容器基础样式 - 移动端优先 */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
  
/* 平板（≥768px） */
@media (min-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 720px;
    }
}
  
/* 小桌面（≥992px） */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
  
/* 大桌面（≥1200px） */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* 极小屏幕适配 (≤359px) */
@media (max-width: 359px) {
    body {
        padding-top: 80px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    p, li {
        font-size: 14px;
    }
}

/* Flexbox布局 */
.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
  
/* Grid布局示例 */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* 移动端适配更小的网格 */
@media (max-width: 575px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}

/* 图片自适应 */
img {
    max-width: 100%;
    height: auto;
    display: block; /* 防止图片底部的间隙 */
}
 
/* 卡片基础样式（移动端） */
.card {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
  
/* 平板适配 */
@media (min-width: 768px) {
    .card {
        width: 48%;
        float: left;
        margin-right: 2%;
    }
}
  
/* 桌面适配 */
@media (min-width: 992px) {
    .card {
        width: 23%;
        margin-right: 2%;
    }
}

/* 移动菜单控制 */
.nav-menu {
    display: none;
}
  
.mobile-menu-btn {
    display: block;
    cursor: pointer;
    padding: 10px;
}
  
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-menu {
        display: flex;
    }
}

/* 页面大标题位置调整 */
.page-title,
.section-title,
.about-title,
.services-title,
.universities-title,
.news-title,
h1.title,
.main-title {
    margin-top: 0;
    position: relative;
}

/* 页面主要内容区域调整 */
.about-content,
.services-content,
.universities-content,
.news-content,
.content-container {
    margin-top: 0;
}

/* 页面主标题样式 */
.page-title {
    font-size: 32px;
    color: #1a73e8;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 767px) {
    .page-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* 通用内容区域样式 */
.content-section {
    padding: 40px 0;
}

@media (max-width: 767px) {
    .content-section {
        padding: 30px 0;
    }
}

@media (max-width: 575px) {
    .content-section {
        padding: 20px 0;
    }
}

/* 保留其他现有样式 */
.company-logo img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.company-logo img:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* 导航菜单 */
nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin: 0 0 0 25px;
}

nav ul li a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.2s;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0066cc;
    transition: width 0.3s;
}

nav ul li a:hover {
    color: #0066cc;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: #0066cc;
}

/* 响应式导航栏设置 */
@media (max-width: 768px) {
    .company-logo img {
        height: 50px;
    }
    
    header {
        padding: 15px 0; /* 平板上略微减小内边距 */
    }
    
    nav ul li {
        margin: 0 0 0 15px;
    }
    
    /* 修复移动端导航菜单问题 */
    nav ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .company-logo img {
        height: 45px;
    }
}

/* 小屏幕移动设备的导航栏调整 - 新增 */
@media (max-width: 576px) {
    nav ul li {
        margin: 0 8px;
    }
    
    nav ul li a {
        font-size: 15px;
        padding: 6px 0;
    }
    
    header {
        padding: 12px 0; /* 移动设备上进一步减小内边距 */
    }
}

/* 特小屏幕设备的调整 - 新增 */
@media (max-width: 359px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    nav ul li {
        margin: 4px 6px;
    }
    
    nav ul li a {
        font-size: 14px;
        padding: 5px 0;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: #fff;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: #1a73e8;
    color: #fff;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* Section Styles */
section {
    padding: 60px 0;
}

h2 {
    color: #1a73e8;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

/* Process Section */
.process ol {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
}

.process ol li {
    margin-bottom: 15px;
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 0 auto;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    background: #1a73e8;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer Styles */
footer {
    background-color: #333 !important;
    color: #fff;
    padding: 40px 0 0 0; /* 移除底部内边距 */
    margin-top: 40px;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

footer .footer-section {
    flex: 1;
    min-width: 200px;
}

footer .footer-section h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

footer .footer-section p,
footer .footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #ccc;
}

footer .footer-section ul.quick-links {
    display: flex;
    align-items: center;
    gap: 10px; /* 链接之间的间距 */
    flex-wrap: nowrap; /* 确保不换行 */
}

footer .footer-section ul.quick-links li {
    margin: 0;
}

footer .footer-section ul.quick-links li.separator {
    color: #ccc; /* 竖线颜色 */
}

footer .footer-section ul.quick-links li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-section ul.quick-links li a:hover {
    color: #1a73e8;
}

footer .footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
    clear: both;
    width: 100%;
    background-color: #333 !important; /* 确保底部版权区域背景色与页脚一致 */
}

footer .footer-bottom p {
    margin: 0;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    color: #ccc; /* 确保底部版权文字颜色与页脚一致 */
}

.copyright {
    line-height: 1.6;
    color: #ccc;
    background-color: #333 !important; /* 确保版权信息背景色与页脚一致 */
    padding: 10px 0;
    width: 100%;
    margin: 0;
}

.copyright p {
    margin: 0;
    padding: 0;
    color: #ccc; /* 确保版权信息文字颜色与页脚一致 */
    text-align: center;
    font-size: 14px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    header {
        padding: 25px 0; /* 平板上略微减小内边距 */
    }
    
    .top-bar {
        padding: 15px 0; /* 平板设备上的顶部栏内边距 */
    }
}

@media (max-width: 576px) {
    header {
        padding: 20px 0; /* 移动设备上进一步减小内边距 */
    }
    
    .top-bar {
        padding: 12px 0; /* 小屏幕设备上的顶部栏内边距 */
    }
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #1a73e8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }

    .social-media {
        gap: 15px;
    }
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.featured-universities {
    padding: 80px 0;
    background: #f8f9fa;
}

.university-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.university-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.university-card:hover {
    transform: translateY(-5px);
}

.university-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.learn-more {
    color: #1a73e8;
    text-decoration: none;
    font-weight: bold;
}

.services-overview {
    padding: 80px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.testimonials {
    background: #1a73e8;
    color: #fff;
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
}

.rating {
    color: #ffd700;
    margin-bottom: 15px;
}

.student-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.student-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background: #f8f9fa;
}

/* Add these new styles */
.services-page {
    padding: 80px 0;
    background: #fff;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Top Bar */
.top-bar {
  background: #f8f9fa;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  width: 100%;
  padding: 8px 0;        /* 缩小上下内边距 */
  display: flex;         /* 启用弹性布局 */
  align-items: center;   /* 内容垂直居中 */
  box-sizing: border-box; /* 防止 padding 撑大高度 */

}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.welcome-message {
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    color: #555;
}

.top-bar-right {
    display: flex;
    align-items: center;
    height: 100%;
}

/* 改进搜索样式 */
.search-container {
    position: relative;
    margin-right: 20px;
    height: 30px;
}

.search-container form {
    display: flex;
    align-items: center;
    height: 30px;
}

.search-container input {
    padding: 0 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    height: 30px;
    width: 180px;
    outline: none;
    transition: all 0.2s;
}

.search-container input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.search-container button {
    background: #0066cc;
    color: white;
    border: none;
    height: 30px;
    width: 30px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.search-container button:hover {
    background: #0055aa;
}

.search-icon {
    color: #fff;
    font-size: 14px;
}

.phone-number {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    color: #555;
}

.phone-icon {
    margin-right: 5px;
    color: #0066cc;
}

/* 响应式样式优化 */
@media (max-width: 768px) {
    .top-bar {
        height: auto;
        padding: 12px 0; /* 平板设备上的顶部栏内边距 */
    }
    
    .top-bar .container {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }
    
    .welcome-message {
        margin-bottom: 8px;
    }
    
    .top-bar-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .search-container form {
        width: 100%;
    }
    
    .search-container input {
        width: 100%;
    }
    
    .phone-number {
        align-self: flex-start;
    }
    
    header {
        padding: 20px 0; /* 平板上略微减小内边距 */
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    body {
        padding-top: 140px;
    }
    
    .search-form-large {
        flex-direction: column;
    }
    
    .search-input-large {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .search-button-large {
        border-radius: 4px;
    }
}

@media (max-width: 576px) {
    header {
        padding: 18px 0; /* 移动设备上进一步减小内边距 */
    }
    
    .top-bar {
        padding: 10px 0; /* 小屏幕设备上的顶部栏内边距 */
    }
    
    .search-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .search-container form {
        width: 100%;
    }
    
    .search-container input {
        width: 100%;
    }
    
    .phone-number {
        align-self: flex-start;
    }
}

@media (max-width: 359px) {
    header {
        padding: 15px 0; /* 特小屏幕上的内边距 */
    }
}

.search-results {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1050;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f6f9ff;
}

.search-result-item h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: #1a73e8;
}

.search-result-item p {
    margin: 0;
    font-size: 13px;
    color: #5f6368;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.result-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 5px;
}

.tag-school {
    background: #e8f0fe;
    color: #1a73e8;
}

.tag-program {
    background: #e6f4ea;
    color: #137333;
}

.highlight {
    background-color: #fff3cd;
    padding: 0 2px;
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 20px;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: #1a73e8;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
}

/* About & Services Section */
.about-services {
    padding: 80px 0;
    background: #fff;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Partner Universities Section */
.partner-universities {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h3 {
    color: #1a73e8;
    font-size: 1.5rem;
}

.read-more {
    color: #1a73e8;
    text-decoration: none;
    font-weight: bold;
}

.card-content {
    color: #666;
    line-height: 1.6;
}

.card-content ul {
    list-style: none;
    padding: 0;
}

.card-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.card-content li::before {
    content: "•";
    color: #1a73e8;
    position: absolute;
    left: 0;
}

.university-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
}

.university-logos img {
    max-width: 100px;
    height: auto;
    transition: filter 0.3s ease;
}



/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #fff;
}

.section-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 20px;
}

.company-info {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.company-info h4 {
    color: #1a73e8;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon {
    font-size: 1.1rem;
    color: #1a73e8;
    margin-right: 10px;
    width: 25px;
    text-align: center;
}

.contact-form {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: #1a73e8;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #1557b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-section {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.mission-text {
    text-align: center;
    max-width: 800px;
}

.mission-text h3 {
    color: #1a73e8;
    margin-bottom: 20px;
    text-align: center;
}

.mission-text p {
    line-height: 1.8;
    color: #666;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
}

.team-section {
    margin-bottom: 60px;
}

.team-section h3 {
    color: #1a73e8;
    margin-bottom: 40px;
    text-align: center;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.team-member {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    text-align: center;
    margin-bottom: 30px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: auto;
}

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

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

.team-member h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

/* Responsive adjustments for team members */
@media (max-width: 992px) {
    .team-member {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .team-member {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.values-section {
    margin-bottom: 60px;
}

.values-section h3 {
    color: #1a73e8;
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.value-card .icon {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 20px;
}

.value-card h4 {
    color: #1a73e8;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-section {
        grid-template-columns: 1fr;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    color: #1a73e8;
    margin-bottom: 20px;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.services-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    flex: 1 1 calc(33.333% - 40px);
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-item .icon {
    font-size: 2rem;
    color: #1a73e8;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #1a73e8;
    margin-bottom: 10px;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-item {
        flex: 1 1 100%;
    }
}

/* Universities Section */
.universities {
    padding: 80px 0;
    background: #f8f9fa;
}

.universities h2 {
    text-align: center;
    color: #1a73e8;
    margin-bottom: 20px;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.universities-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.university-item {
    flex: 1 1 calc(33.333% - 40px);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.university-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.university-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    object-fit: contain;
}

.university-item h3 {
    color: #1a73e8;
    margin-bottom: 10px;
}

.university-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .university-item {
        flex: 1 1 100%;
    }
}

/* Main Content */
main {
    padding-top: 20px; /* Adjust this value as needed */
}

/* University Card Styles */
.university-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 20px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.university-card img {
    max-width: 100%;
    border-radius: 8px;
}

.university-card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
    color: #333;
}

.university-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* More Info Link Styles */
.more-info-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.more-info-link:hover {
    background-color: #1557a0;
}

/* Back Link Styles */
.back-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #666;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.back-link:hover {
    background-color: #444;
}

/* University Introduction Section */
.university-intro {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.university-intro .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.university-intro h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.university-image {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.university-details {
    text-align: left;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.university-details p {
    margin-bottom: 15px;
}

/* Back Link Styles */
.back-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.back-link:hover {
    background-color: #1557a0;
}

/* Services Container */
.services-container {
    display: flex;
    max-width: 1200px;
    margin: 80px auto; /* 增加上边距 */
    padding: 0 20px;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sidebar h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar ul li a:hover {
    background-color: #f0f0f0;
    color: #1a73e8;
}

.sidebar ul li a.active {
    background-color: #1a73e8;
    color: #fff;
}

/* Content Area */
.content {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.content-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Title Box */
.title-box {
    background: repeating-linear-gradient(45deg,  #465790,  #465790 20px, #40508c 20px, #465790 30px);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.title-box h2 {
    font-size: 24px;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

/* 新闻动态页面样式 */
.news-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item h4 {
    color: #1a73e8;
    font-size: 20px;
    margin-bottom: 5px;
}

.news-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

.news-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.news-item p {
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

/* 响应式新闻布局 */
@media (max-width: 768px) {
    .news-item h4 {
        font-size: 18px;
    }
    
    .news-image {
        max-height: 200px;
    }
}

/* 首页新闻预览样式 */
.news-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.news-preview-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-preview-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-preview-item h4 {
    padding: 15px 15px 5px;
    color: #1a73e8;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.news-preview-date {
    padding: 0 15px;
    color: #666;
    font-size: 12px;
    font-style: italic;
    margin: 0 0 8px;
}

.news-preview-excerpt {
    padding: 0 15px;
    font-size: 14px;
    color: #333;
    margin: 0 0 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-read-more {
    display: inline-block;
    margin: 0 15px 15px;
    color: #1a73e8;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-read-more:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-preview-container {
        flex-direction: column;
    }
    
    .news-preview-item {
        flex: 1 1 100%;
    }
    
    .news-preview-image {
        height: 160px;
    }
}

/* 首页新闻部分样式 */
.news-section {
    padding: 60px 0;
    background: #f0f5ff;
}

.news-section .section-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.news-section .card-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
}

/* 新闻预览与详情展示样式 */
.news-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.news-preview {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

.news-preview-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.news-preview-header h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a73e8;
}

.news-preview-body {
    display: flex;
    padding: 15px;
    align-items: center;
    gap: 15px;
}

.news-preview-body img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.news-preview-excerpt {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    margin: 0;
}

.news-expand-btn {
    background: #1a73e8;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.news-expand-btn:hover {
    background: #0d5bdd;
}

.news-full-content-container {
    margin-top: 20px;
}

.news-full-content {
    display: none;
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.news-full-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.news-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    transition: background-color 0.3s ease;
}

.news-close-btn:hover {
    background: #e0e0e0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式布局调整 */
@media (max-width: 768px) {
    .news-preview-body {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-preview-body img {
        width: 100%;
        height: 150px;
        margin-bottom: 10px;
    }
    
    .news-expand-btn {
        align-self: flex-end;
        margin-top: 10px;
    }
}

/* News Detail Page Styles */
.news-detail-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.news-detail-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.news-detail-header h1 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.news-detail-header .news-date {
    color: #666;
    font-style: italic;
}

.news-detail-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-detail-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.news-detail-text {
    line-height: 1.8;
}

.news-detail-text p {
    margin-bottom: 20px;
}

.news-detail-text h2 {
    color: #1a73e8;
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.news-detail-text h3 {
    color: #333;
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.news-detail-text ul, .news-detail-text ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.news-detail-text ul li, .news-detail-text ol li {
    margin-bottom: 10px;
}

.news-detail-text blockquote {
    border-left: 4px solid #1a73e8;
    padding: 15px;
    background-color: #f8f9fa;
    margin: 20px 0;
    font-style: italic;
}

.news-detail-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.back-button {
    display: inline-block;
    color: #1a73e8;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 0;
    transition: color 0.3s;
}

.back-button:hover {
    color: #0d47a1;
}

/* Responsive styles for news detail */
@media (max-width: 768px) {
    .news-detail-container {
        padding: 15px;
        margin: 20px auto;
    }
    
    .news-detail-header h1 {
        font-size: 1.8rem;
    }
    
    .news-detail-text h2 {
        font-size: 1.5rem;
    }
    
    .news-detail-text h3 {
        font-size: 1.3rem;
    }
}

/* 通用页面结构样式 - 确保页脚始终在底部 */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content,
.services-container,
.universities,
.about-container,
.news-container,
.news-detail,
.news-detail-container {
    flex: 1 0 auto;
    padding-bottom: 30px; /* 为页脚留出空间 */
}

#footer {
    flex-shrink: 0; /* 防止页脚压缩 */
    width: 100%;
    background-color: #333 !important;
}

footer, 
.footer-bottom, 
.copyright {
    background-color: #333 !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 确保移动设备上页脚也保持在底部 */
    .main-content,
    .services-container,
    .universities,
    .about-container,
    .news-container,
    .news-detail,
    .news-detail-container {
        flex: 1 0 auto;
        padding-bottom: 20px;
    }
    
    #footer {
        background-color: #333 !important;
    }
    
    footer, 
    .footer-bottom, 
    .copyright {
        background-color: #333 !important;
    }
}

/* 搜索结果样式优化 */
.search-results-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding-top: 120px;
}

.search-container-large {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.search-form-large {
    display: flex;
    margin-bottom: 25px;
}

.search-input-large {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    outline: none;
    transition: all 0.2s;
}

.search-input-large:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.search-button-large {
    padding: 12px 20px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.search-button-large:hover {
    background: #0055aa;
}

.filter-options {
    margin: 20px 0;
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.filter-options label {
    margin-right: 15px;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
}

.filter-options input[type="radio"] {
    margin-right: 5px;
}

.result {
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 4px;
    background: #fff;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.result:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.result h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.result h3 a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}

.result h3 a:hover {
    color: #0055aa;
    text-decoration: underline;
}

.result p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

.result-type {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 500;
}

.school {
    background: #e1f5fe;
    color: #0277bd;
}

.program {
    background: #e8f5e9;
    color: #2e7d32;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.pagination button {
    margin: 0 5px;
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination button:hover {
    background: #f1f1f1;
}

.pagination button.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.search-results-count {
    margin-bottom: 20px;
    padding: 10px 15px;
    background: #fff;
    border-radius: 4px;
    color: #555;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* About Us Page Styles */
.about-us .mission-text {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 30px auto;
}

.about-us .mission-section {
    margin-bottom: 40px;
}

/* Team Member Description Style */
.member-description {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    text-align: left;
}

.member-description li {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.4;
}

.about-us h2 {
    text-align: center;
}

.mission-text {
    text-align: center;
}

/* 为没有照片的Team Members调整样式 */
.values-section .team-member {
    padding-top: 30px;
}

.values-section .team-member h4 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #1a73e8;
}

.values-section .team-member p {
    font-weight: 500;
    margin-bottom: 15px;
}

/* 为Management Team添加人名样式 */
.team-section .team-member h4 {
    color: #1a73e8;
    font-size: 20px;
    margin-bottom: 10px;
}

/* 保持Team Members人名样式一致 */
.values-section .team-member h4 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #1a73e8;
}

/* Global Offices Section */
.global-offices-section {
    margin-bottom: 60px;
}

.global-offices-section h3 {
    color: #1a73e8;
    margin-bottom: 40px;
    text-align: center;
    font-size: 24px;
}

.global-offices-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.offices-text {
    flex: 1;
}

.offices-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offices-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
}

.offices-list li:last-child {
    border-bottom: none;
}

.offices-list li::before {
    content: "•";
    color: #1a73e8;
    position: absolute;
    left: 5px;
    font-size: 20px;
}

.offices-image {
    flex: 1;
    text-align: center;
}

.offices-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive design for Global Offices */
@media (max-width: 992px) {
    .global-offices-content {
        flex-direction: column;
    }
    
    .offices-text {
        order: 2;
        width: 100%;
    }
    
    .offices-image {
        order: 1;
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Changsha Office Section */
.changsha-office-section {
    margin-bottom: 60px;
}

.changsha-office-section h3 {
    color: #1a73e8;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

.office-description {
    text-align: center;
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
}

.office-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 1000px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive design for gallery */
@media (max-width: 992px) {
    .office-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .office-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

/* Kuala Lumpur Office Section */
.kl-office-section {
    margin-bottom: 60px;
}

.kl-office-section h3 {
    color: #1a73e8;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

.office-gallery-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

/* Responsive design for KL office gallery */
@media (max-width: 992px) {
    .office-gallery-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .office-gallery-3 {
        grid-template-columns: 1fr;
    }
}

/* About highlights style */
.about-highlights {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.about-highlights li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #1a73e8;
    font-weight: 500;
}

.about-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

/* 页面内容区域 */
.about-page-banner,
.services-banner,
.universities-banner,
.news-banner {
    padding-top: 100px;
    margin-top: 0;
}

@media (max-width: 992px) {
    body {
        padding-top: 90px; /* 移动端稍微减小内边距 */
    }
    
    .about-page-banner,
    .services-banner,
    .universities-banner,
    .news-banner {
        padding-top: 70px;
    }
} 