* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    color: #1a8ccc;
    letter-spacing: 0.5px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 45px;
}

.nav a {
    text-decoration: none;
    color: #666;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav a.active {
    color: #1a8ccc;
}

.nav a:hover {
    color: #1a8ccc;
}

/* Hero区域 */
.hero {
    position: relative;
    width: 100%;
    margin-top: 70px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.9;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 1.5px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
    font-weight: 500;
}

.btn-outline {
    background: #fff;
    color: #1a8ccc;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1577b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #1a9ed6 0%, #1a8ccc 100%);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(26, 140, 204, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a8ccc 0%, #1577b3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 140, 204, 0.5);
}

/* 核心价值 */
.core-value {
    padding: 80px 0 100px;
    background: #f8f9fa;
}

.core-value h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.temple-image {
    text-align: center;
    margin-bottom: 80px;
}

.temple-image img {
    max-width: 1200px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
}

.value-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f4f8;
    border-radius: 50%;
}

.value-item .icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.value-item h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.value-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* 核心服务体系 */
.services {
    padding: 80px 0 100px;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    border-left: 4px solid #1a8ccc;
    padding: 35px 30px;
    background: #fff;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.learn-more {
    color: #1a8ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more:hover {
    color: #1577b3;
}

/* 页脚 */
.footer {
    background: #1a2332;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-col p {
    font-size: 14px;
    color: #8a9199;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #8a9199;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2a3442;
}

.footer-bottom p {
    color: #6a7179;
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 初始状态 - 隐藏元素 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 当元素进入视口时显示 */
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 导航栏和Hero始终显示 */
.header {
    animation: fadeIn 0.5s ease-out;
}

.hero {
    animation: fadeIn 0.8s ease-out;
}

/* 为不同元素添加延迟 */
.value-item:nth-child(1).animated {
    transition-delay: 0s;
}

.value-item:nth-child(2).animated {
    transition-delay: 0.1s;
}

.value-item:nth-child(3).animated {
    transition-delay: 0.2s;
}

.value-item:nth-child(4).animated {
    transition-delay: 0.3s;
}

.service-card:nth-child(1).animated {
    transition-delay: 0s;
}

.service-card:nth-child(2).animated {
    transition-delay: 0.1s;
}

.service-card:nth-child(3).animated {
    transition-delay: 0.2s;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .nav {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
}

/* 关于我们页面 */
.about-page {
    padding: 120px 0 80px;
    background: #fff;
    min-height: calc(100vh - 400px);
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #1a1a1a;
    letter-spacing: 1.5px;
}

.about-section p {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.method-list,
.region-list {
    margin: 25px 0;
    padding-left: 20px;
}

.method-list li,
.region-list li {
    font-size: 15px;
    line-height: 2.2;
    color: #555;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    list-style: disc;
}

.method-list li::marker,
.region-list li::marker {
    color: #1a8ccc;
}

/* 服务内容页面 */
.services-page {
    padding: 100px 0 80px;
    background: #fff;
}

.services-page .btn-primary {
    background: linear-gradient(135deg, #1a9ed6 0%, #1a8ccc 100%);
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(26, 140, 204, 0.3);
    letter-spacing: 0.5px;
    font-weight: 400;
}

.services-page .btn-primary:hover {
    background: linear-gradient(135deg, #1a8ccc 0%, #1577b3 100%);
    box-shadow: 0 6px 20px rgba(26, 140, 204, 0.4);
    transform: translateY(-2px);
}

.services-intro {
    padding: 40px 0 60px;
}

.services-intro h1 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.intro-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.service-detail {
    margin-top: 60px;
    padding-top: 40px;
}

.service-detail h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: 1.5px;
}

.service-highlight {
    background: #e8f4f8;
    padding: 25px 30px;
    margin-bottom: 40px;
    margin-left: -120px;
    margin-right: -120px;
    padding-left: 80px;
    padding-right: 80px;
    border-left: 4px solid #1a8ccc;
}

.service-highlight p {
    font-size: 15px;
    line-height: 2;
    color: #333;
    margin: 0;
    letter-spacing: 0.5px;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-content-grid.reverse {
    direction: ltr;
}

.service-content-grid.reverse .service-image {
    order: 1;
}

.service-content-grid.reverse .service-list {
    order: 2;
}

.service-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list ul li {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
    letter-spacing: 0.3px;
}

.service-list ul li::before {
    content: "•";
    color: #1a8ccc;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.service-list ul li strong {
    color: #1a1a1a;
    font-weight: 500;
}

.service-note {
    background: #fff9e6;
    padding: 20px 25px;
    margin-bottom: 30px;
    border-left: 4px solid #ffa500;
}

.service-note p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    letter-spacing: 0.5px;
}

.service-note strong {
    color: #1a1a1a;
}

.service-image {
    text-align: center;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* 响应式 */
@media (max-width: 968px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-image {
        order: -1;
    }
}

/* 服务优势部分 */
.service-advantages {
    padding: 80px 0;
    background: #f8f9fa;
    margin-top: 60px;
    text-align: center;
}

.service-advantages h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-item {
    text-align: center;
    padding: 20px;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.advantage-item h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.advantage-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

@media (max-width: 968px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 项目经验页面 */
.cases-page {
    padding: 100px 0 80px;
    background: #fff;
}

.cases-intro {
    padding: 40px 0 60px;
    text-align: center;
}

.cases-intro h1 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.cases-grid-section {
    padding: 40px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.case-type-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.case-type-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: #1a8ccc;
}

.case-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f4f8;
    border-radius: 50%;
}

.case-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.case-type-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.case-type-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.case-type-card .case-slogan {
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.case-btn {
    display: inline-block;
    padding: 10px 28px;
    background: #1a8ccc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    margin-top: auto;
}

.case-btn:hover {
    background: #1576a8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 140, 204, 0.3);
}

@media (max-width: 968px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

/* 行业经验部分 */
.industry-section {
    padding: 80px 0;
    background: #f8f9fa;
    margin-top: 60px;
    text-align: center;
}

.industry-section h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin: 60px auto 50px;
    max-width: 1100px;
}

.industry-item {
    text-align: center;
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.industry-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.industry-item h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.industry-item p {
    font-size: 13px;
    color: #888;
    letter-spacing: 0.3px;
}

.industry-note {
    background: #fff9e6;
    padding: 30px 40px;
    margin-top: 50px;
    border-radius: 8px;
    text-align: left;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.industry-note p {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.industry-note p:last-child {
    margin-bottom: 0;
}

.industry-example {
    margin-top: 20px;
}

.industry-example strong {
    color: #1a1a1a;
    font-weight: 500;
}

@media (max-width: 968px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 泰国落地部分 */
.thailand-section {
    padding: 80px 0;
    background: #fff;
}

.thailand-section h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: 1.5px;
}

.thailand-section .btn-primary {
    width: 100%;
    max-width: 450px;
    padding: 20px 60px;
    font-size: 20px;
    border-radius: 50px;
    display: block;
    margin-top: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #1a9ed6 0%, #1a8ccc 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26, 140, 204, 0.3);
    transition: all 0.3s;
}

.thailand-section .btn-primary:hover {
    background: linear-gradient(135deg, #1a8ccc 0%, #1577b3 100%);
    box-shadow: 0 6px 20px rgba(26, 140, 204, 0.4);
    transform: translateY(-2px);
}

/* 客户评价部分 - 留言板样式 */
.testimonials-section {
    padding: 80px 0 100px;
    background: #f8f9fa;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.testimonials-list {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-message {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #1a8ccc;
    text-align: left;
}

.testimonial-message:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.message-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.message-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.message-avatar img {
    width: 28px;
    height: 28px;
}

.message-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.message-info p {
    font-size: 13px;
    color: #1a8ccc;
    margin: 0;
}

.message-content {
    padding-left: 65px;
}

.message-content p {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    font-style: italic;
    margin: 0;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .message-content {
        padding-left: 0;
        margin-top: 15px;
    }
}

/* 合作客户部分 */
.partners-section {
    padding: 80px 0 100px;
    background: #fff;
    text-align: center;
}

.partners-section h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.partners-image {
    margin-top: 60px;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.partners-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 团队介绍页面 */
.team-page {
    padding: 100px 0 80px;
    background: #fff;
}

.team-intro {
    padding: 40px 0 60px;
    text-align: center;
}

.team-intro h1 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.team-description {
    margin-bottom: 60px;
}

.team-advantages {
    padding: 40px 0;
}

.team-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-advantage-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s;
}

.team-advantage-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: #1a8ccc;
}

.team-advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f4f8;
    border-radius: 50%;
}

.team-advantage-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.team-advantage-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.team-advantage-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

@media (max-width: 968px) {
    .team-advantage-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* 核心管理团队部分 */
.core-team-section {
    padding: 60px 0 80px;
    background: #fff;
    margin-top: 40px;
}

.core-team-header {
    background: #1a7ab8;
    padding: 45px 40px;
    text-align: center;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(26, 122, 184, 0.2);
}

.core-team-header h2 {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: 3px;
}

.core-team-header p {
    font-size: 17px;
    color: #fff;
    margin: 0;
    opacity: 0.95;
    letter-spacing: 1px;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.team-members-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.team-member-card {
    background: #fff;
    padding: 40px 35px;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s;
    position: relative;
}

.team-member-card:nth-child(2n) {
    border-right: none;
}

.team-member-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.team-member-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #1a9ed6 0%, #1a8ccc 100%);
    transition: height 0.3s;
}

.team-member-card:hover {
    background: #f8fcff;
    box-shadow: inset 0 0 0 1px #1a8ccc;
    transform: translateX(5px);
}

.team-member-card:hover::before {
    height: 100%;
}

.member-header {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.member-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d4ebf5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(26, 140, 204, 0.15);
    transition: all 0.3s;
}

.team-member-card:hover .member-avatar {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(26, 140, 204, 0.25);
}

.member-avatar img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 50%;
}

.member-info h3 {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.member-title {
    font-size: 14px;
    color: #1a8ccc;
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.member-description p {
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin: 0;
    letter-spacing: 0.3px;
}

.member-detail {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e0e0e0;
}

.member-detail p {
    font-size: 13px;
    line-height: 1.9;
    color: #666;
    margin: 0;
    letter-spacing: 0.3px;
}

.toggle-detail-btn {
    margin-top: 15px;
    padding: 0;
    background: none;
    color: #1a8ccc;
    border: none;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    font-style: italic;
    text-decoration: underline;
}

.toggle-detail-btn:hover {
    color: #1577b3;
    text-decoration-thickness: 2px;
}

.toggle-detail-btn.active {
    color: #1a8ccc;
}

@media (max-width: 968px) {
    .team-members-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member-card {
        border-right: none;
    }
    
    .team-member-card:hover {
        transform: translateY(-5px);
    }
}

/* 东南亚本地顾问团队部分 */
.local-team-section {
    padding: 60px 0 80px;
    background: #fff;
    margin-top: 60px;
}

/* 团队优势部分 */
.team-benefits-section {
    padding: 80px 0 100px;
    background: #f8f9fa;
    text-align: center;
}

.team-benefits-section h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
    text-align: center;
}

.benefit-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-8px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f4f8;
    border-radius: 50%;
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #1a9ed6 0%, #1a8ccc 100%);
    transform: scale(1.1);
}

.benefit-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    transition: all 0.3s;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.9;
    letter-spacing: 0.3px;
    margin: 0;
}

@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA部分 */
.cta-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.cta-section .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #1a9ed6 0%, #1a8ccc 100%);
    color: #fff;
    border: none;
    padding: 16px 50px;
    font-size: 17px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(26, 140, 204, 0.3);
    letter-spacing: 1px;
    font-weight: 500;
    display: inline-block;
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #1a8ccc 0%, #1577b3 100%);
    box-shadow: 0 6px 20px rgba(26, 140, 204, 0.4);
    transform: translateY(-3px);
}

/* 联系我们页面 */
.contact-page {
    padding: 100px 0 80px;
    background: #fff;
    min-height: calc(100vh - 400px);
}

.contact-intro {
    padding: 40px 0 60px;
}

.contact-intro h1 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.contact-info-section {
    margin-bottom: 60px;
}

.contact-info-section h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #1a1a1a;
    letter-spacing: 1.5px;
}

.contact-list {
    max-width: 800px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    padding-left: 10px;
    background: #f8f9fa;
}

.contact-dot {
    font-size: 20px;
    margin-right: 15px;
    color: #333;
}

.contact-text {
    font-size: 16px;
    color: #555;
    letter-spacing: 0.5px;
}

/* 在线提交需求表单 */
.contact-form-section {
    margin-top: 80px;
    max-width: 700px;
}

.contact-form-section h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: 1.5px;
}

.form-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s;
    font-family: inherit;
    color: #333;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a8ccc;
    box-shadow: 0 0 0 3px rgba(26, 140, 204, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    font-size: 17px;
    background: linear-gradient(135deg, #1a9ed6 0%, #1a8ccc 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(26, 140, 204, 0.3);
    letter-spacing: 1px;
    font-weight: 500;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #1a8ccc 0%, #1577b3 100%);
    box-shadow: 0 6px 20px rgba(26, 140, 204, 0.4);
    transform: translateY(-2px);
}


/* 案例详情页面样式 */
.case-detail-page {
    padding-top: 90px;
    padding-bottom: 80px;
    background: #f8f9fa;
}

.back-nav {
    margin-bottom: 30px;
}

.back-nav a {
    color: #1a8ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.back-nav a:hover {
    color: #1576a8;
}

.case-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: #fff;
    border-radius: 12px;
}

.case-category {
    display: inline-block;
    padding: 8px 20px;
    background: #e8f4f8;
    color: #1a8ccc;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.case-header h1 {
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    letter-spacing: 1px;
}

.case-content {
    max-width: 900px;
    margin: 0 auto;
}

.case-section {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.case-section h2 {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f4f8;
}

.case-section h3 {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 25px 0 15px;
}

.case-section h4 {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.case-section p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.case-meta {
    display: flex;
    gap: 30px;
    margin: 20px 0 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-label {
    font-weight: 500;
    color: #666;
    margin-right: 8px;
}

.meta-value {
    color: #1a8ccc;
}

.case-highlight {
    background: #f0f7fb;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #1a8ccc;
    margin: 25px 0;
}

.case-highlight h3 {
    margin-top: 0;
}

.case-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.case-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.case-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #1a8ccc;
    font-size: 20px;
}

.framework-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.framework-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.framework-item:hover {
    background: #f0f7fb;
    transform: translateY(-2px);
}

.framework-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.framework-content h4 {
    font-size: 15px;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.framework-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.case-insight {
    background: #fff9e6;
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 4px solid #f5a623;
    margin: 25px 0;
}

.case-insight p {
    margin: 0;
    color: #666;
}

.principle-box {
    background: linear-gradient(135deg, #1a8ccc 0%, #1576a8 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
}

.principle-box h3 {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 20px;
}

.principle-box p {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.adjustment-steps {
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1a8ccc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 10px 0;
}

.step-content p {
    margin: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.result-card {
    padding: 25px;
    background: #f0f7fb;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.result-card:hover {
    background: #e8f4f8;
    transform: translateY(-3px);
}

.result-icon {
    font-size: 32px;
    color: #1a8ccc;
    margin-bottom: 15px;
}

.result-card p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.result-note {
    background: #f0f7fb;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 30px;
    font-style: italic;
}

.case-footer {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
}

.case-footer .btn {
    margin: 0 10px;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-primary {
    background: #1a8ccc;
    color: #fff;
}

.btn-primary:hover {
    background: #1576a8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 140, 204, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #1a8ccc;
    border: 2px solid #1a8ccc;
}

.btn-secondary:hover {
    background: #1a8ccc;
    color: #fff;
}

@media (max-width: 768px) {
    .case-header h1 {
        font-size: 24px;
    }
    
    .case-section {
        padding: 25px 20px;
    }
    
    .framework-list {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .case-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .case-footer .btn {
        display: block;
        margin: 10px 0;
    }
}


/* 跨境投资案例特有样式 */
.challenge-box {
    background: #fff9e6;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #f5a623;
    margin: 25px 0;
}

.challenge-box h4 {
    color: #1a1a1a;
    margin: 0 0 15px 0;
    font-size: 16px;
}

.challenge-box p {
    margin: 15px 0 0 0;
    font-style: italic;
    color: #666;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.policy-card {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.policy-card:hover {
    background: #f0f7fb;
    border-color: #1a8ccc;
    transform: translateY(-3px);
}

.policy-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.policy-card h4 {
    font-size: 15px;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.policy-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.consideration-list {
    margin: 30px 0;
}

.consideration-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.consideration-item:hover {
    background: #f0f7fb;
    transform: translateX(5px);
}

.consideration-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.consideration-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #1a1a1a;
}

.consideration-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.location-result {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fb 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #1a8ccc;
}

.location-result h3 {
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.location-result p {
    margin: 0;
    line-height: 1.8;
}

.service-checklist {
    display: grid;
    gap: 12px;
    margin: 25px 0;
}

.checklist-item {
    padding: 15px 20px;
    background: #f0f7fb;
    border-radius: 6px;
    color: #1a8ccc;
    font-size: 14px;
    font-weight: 500;
}

.structure-steps {
    margin: 30px 0;
}

.structure-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.structure-item:hover {
    background: #f0f7fb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.structure-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a8ccc 0%, #1576a8 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    flex-shrink: 0;
}

.structure-content h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.structure-content p {
    margin: 0;
    font-size: 14px;
}

.case-note {
    background: #fff9e6;
    padding: 20px 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #f5a623;
}

.case-note p {
    margin: 0;
}

.timeline-section {
    margin: 30px 0;
}

.timeline-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.achievement-card {
    padding: 25px;
    background: #f0f7fb;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.achievement-card:hover {
    background: #e8f4f8;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(26, 140, 204, 0.15);
}

.achievement-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.achievement-card h4 {
    font-size: 16px;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.achievement-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.progress-update {
    background: linear-gradient(135deg, #1a8ccc 0%, #1576a8 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.progress-update h3 {
    color: #fff;
    margin: 0 0 15px 0;
}

.progress-update p {
    color: #fff;
    margin: 0;
    line-height: 1.8;
}

.value-summary {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #f0f7fb;
    border-radius: 12px;
    margin: 30px 0;
    align-items: flex-start;
}

.summary-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.summary-content h3 {
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.summary-content p {
    margin: 0;
    line-height: 1.8;
}

.key-takeaways {
    margin: 30px 0;
}

.key-takeaways h3 {
    text-align: center;
    margin-bottom: 30px;
}

.takeaway-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.takeaway-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    align-items: center;
}

.takeaway-number {
    width: 50px;
    height: 50px;
    background: #1a8ccc;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.takeaway-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .policy-grid,
    .achievement-grid,
    .takeaway-list {
        grid-template-columns: 1fr;
    }
    
    .value-summary {
        flex-direction: column;
        text-align: center;
    }
}


/* 跨境资金案例特有样式 */
.problem-statement {
    margin: 30px 0;
}

.problem-statement h3 {
    margin-bottom: 15px;
}

.problem-highlight {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3d6 100%);
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 4px solid #f5a623;
    margin: 20px 0;
}

.problem-highlight p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.8;
}

.analysis-process {
    margin: 30px 0;
}

.framework-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
}

.framework-row {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    align-items: flex-start;
}

.framework-row:last-child {
    border-bottom: none;
}

.framework-label {
    min-width: 120px;
    font-weight: 500;
    color: #1a8ccc;
    font-size: 14px;
    flex-shrink: 0;
}

.framework-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.core-insight-box {
    background: linear-gradient(135deg, #1a8ccc 0%, #1576a8 100%);
    padding: 50px 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.insight-quote {
    position: relative;
}

.insight-quote p {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.5px;
}

.direction-section {
    margin: 30px 0;
}

.direction-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid #1a8ccc;
}

.direction-header {
    margin-bottom: 20px;
}

.direction-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #1a8ccc;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 12px;
}

.direction-header h3 {
    margin: 0;
    font-size: 20px;
    color: #1a1a1a;
}

.direction-content p {
    margin-bottom: 20px;
}

.fund-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.fund-type-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e8f4f8;
    transition: all 0.3s;
}

.fund-type-card:hover {
    border-color: #1a8ccc;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(26, 140, 204, 0.15);
}

.fund-type-card h4 {
    margin: 0 0 10px 0;
    font-size: 15px;
    color: #1a8ccc;
}

.fund-type-card p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.direction-note {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

.results-list {
    margin: 30px 0;
}

.result-row {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    align-items: flex-start;
}

.result-row:last-child {
    border-bottom: none;
}

.result-marker {
    width: 12px;
    height: 12px;
    background: #1a8ccc;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.result-text h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #1a1a1a;
}

.result-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.transformation-note {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fb 100%);
    padding: 25px 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #1a8ccc;
}

.transformation-note p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.8;
}

.final-summary {
    margin: 30px 0;
}

.summary-box {
    background: #f0f7fb;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.summary-box h3 {
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.summary-box p {
    margin: 0;
    line-height: 1.8;
}

.key-principles h3 {
    text-align: center;
    margin-bottom: 30px;
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.principle-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s;
}

.principle-card:hover {
    background: #f0f7fb;
    transform: translateY(-3px);
}

.principle-number {
    width: 50px;
    height: 50px;
    background: #1a8ccc;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.principle-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .fund-types {
        grid-template-columns: 1fr;
    }
    
    .principle-grid {
        grid-template-columns: 1fr;
    }
    
    .framework-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .framework-label {
        min-width: auto;
    }
    
    .core-insight-box {
        padding: 30px 20px;
    }
    
    .insight-quote p {
        font-size: 18px;
    }
}


/* 品牌与知识产权案例特有样式 */
.situation-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.situation-box h3 {
    margin: 0 0 15px 0;
}

.warning-text {
    margin-top: 20px;
    padding: 20px;
    background: #fff9e6;
    border-radius: 8px;
    border-left: 4px solid #f5a623;
}

.warning-text p {
    margin: 0 0 10px 0;
}

.warning-text p:last-child {
    margin-bottom: 0;
}

.highlight-warning {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 16px;
}

.crisis-timeline {
    margin: 30px 0;
    padding-left: 30px;
    border-left: 3px solid #e8e8e8;
}

.timeline-point {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    background: #1a8ccc;
    border-radius: 50%;
    position: absolute;
    left: -38px;
    top: 5px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #e8f4f8;
}

.timeline-content h4 {
    margin: 0 0 10px 0;
    color: #1a8ccc;
    font-size: 16px;
}

.timeline-content p {
    margin: 0;
    line-height: 1.8;
}

.realization-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3d6 100%);
    padding: 25px 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #f5a623;
}

.realization-box h3 {
    margin: 0 0 15px 0;
}

.realization-box p {
    margin: 0;
    line-height: 1.8;
}

.fundamental-question {
    background: linear-gradient(135deg, #1a8ccc 0%, #1576a8 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

.fundamental-question p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.review-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.review-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.review-card:hover {
    background: #f0f7fb;
    transform: translateY(-3px);
}

.review-label {
    display: inline-block;
    padding: 6px 16px;
    background: #1a8ccc;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.review-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.legal-framework {
    margin: 30px 0;
}

.framework-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.framework-title {
    font-weight: 500;
    color: #1a8ccc;
    font-size: 15px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8e8e8;
}

.framework-item {
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.framework-item:last-child {
    border-bottom: none;
}

.framework-item h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #1a1a1a;
}

.framework-item p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.strategic-judgment {
    background: #f0f7fb;
    padding: 25px 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #1a8ccc;
}

.strategic-judgment h3 {
    margin: 0 0 15px 0;
}

.strategic-judgment p {
    margin: 0;
    line-height: 1.8;
}

.strategy-list {
    margin: 30px 0;
}

.strategy-block {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    align-items: flex-start;
    transition: all 0.3s;
}

.strategy-block:hover {
    background: #f0f7fb;
    transform: translateX(5px);
}

.strategy-number {
    padding: 8px 16px;
    background: #1a8ccc;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.strategy-content h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #1a1a1a;
}

.strategy-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.role-statement {
    background: #fff9e6;
    padding: 20px 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #f5a623;
}

.role-statement p {
    margin: 0;
    font-style: italic;
    line-height: 1.8;
}

.outcomes-grid {
    margin: 30px 0;
}

.outcome-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    align-items: flex-start;
}

.outcome-item:last-child {
    border-bottom: none;
}

.outcome-bar {
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #1a8ccc 0%, #1576a8 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.outcome-text h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #1a1a1a;
}

.outcome-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.transformation-highlight {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fb 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

.transformation-highlight h3 {
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.transformation-highlight p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #1a1a1a;
}

.observation-box {
    background: #f8f9fa;
    padding: 25px 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.observation-box h3 {
    margin: 0 0 15px 0;
}

.observation-box p {
    margin: 0;
    line-height: 1.8;
}

.value-proposition {
    background: #f0f7fb;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #1a8ccc;
}

.value-header h3 {
    margin: 0 0 15px 0;
    color: #1a1a1a;
}

.value-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
}

.key-lessons {
    margin: 30px 0;
}

.key-lessons h3 {
    text-align: center;
    margin-bottom: 30px;
}

.lesson-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lesson-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    align-items: center;
    transition: all 0.3s;
}

.lesson-item:hover {
    background: #f0f7fb;
    transform: translateY(-2px);
}

.lesson-tag {
    width: 45px;
    height: 45px;
    background: #1a8ccc;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.lesson-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .review-areas {
        grid-template-columns: 1fr;
    }
    
    .lesson-grid {
        grid-template-columns: 1fr;
    }
    
    .fundamental-question p {
        font-size: 16px;
    }
    
    .crisis-timeline {
        padding-left: 20px;
    }
    
    .timeline-marker {
        left: -28px;
    }
}


/* ===================================
   Case Market Entry Specific Styles
   =================================== */

/* Market Context Box */
.market-context {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #0066cc;
}

.market-context h3 {
    color: #0066cc;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.initial-challenge {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #ffc107;
}

.initial-challenge h3 {
    color: #856404;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Pain Points Grid */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.pain-point-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.pain-point-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
}

.pain-point-number {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.pain-point-content h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.pain-point-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Core Demand Box */
.core-demand {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border: 2px solid #2196f3;
}

.core-demand h3 {
    color: #1976d2;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.core-demand p {
    color: #0d47a1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Service Phase Sections */
.service-phase {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #dee2e6;
}

.phase-header {
    margin-bottom: 20px;
}

.phase-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.phase-header h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 10px 0 0 0;
}

.phase-content {
    margin-top: 20px;
}

/* Analysis Dimensions */
.analysis-dimensions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.dimension-tag {
    background: white;
    border: 2px solid #0066cc;
    color: #0066cc;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

.conclusion-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    margin-top: 20px;
}

.conclusion-box h4 {
    color: #28a745;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Roadmap Stages */
.roadmap-stages {
    margin: 25px 0;
}

.stage-box {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

.stage-label {
    display: inline-block;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.stage-desc h4 {
    color: #2c3e50;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.stage-desc p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.stage-arrow {
    text-align: center;
    font-size: 2rem;
    color: #0066cc;
    margin: 10px 0;
    font-weight: bold;
}

.strategy-value {
    background: #e7f3ff;
    padding: 18px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #0066cc;
}

.strategy-value p {
    color: #004085;
    margin: 0;
    line-height: 1.6;
}

/* Support List */
.support-list {
    margin: 25px 0;
}

.support-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.support-marker {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.support-text h4 {
    color: #2c3e50;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.support-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.process-note {
    background: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    color: #856404;
    font-style: italic;
}

/* Achievements Showcase */
.achievements-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.achievement-block {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-block:hover {
    border-color: #28a745;
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.15);
    transform: translateY(-3px);
}

.achievement-icon-box {
    margin-bottom: 15px;
}

.achievement-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: bold;
}

.achievement-detail h4 {
    color: #2c3e50;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.achievement-detail p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Client Feedback */
.client-feedback {
    margin: 40px 0;
}

.client-feedback h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.feedback-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #0066cc;
    position: relative;
}

.feedback-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: #0066cc;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.feedback-quote p {
    color: #2c3e50;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Summary Content */
.summary-content {
    margin: 30px 0;
}

.value-statement {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid #2196f3;
}

.value-statement p {
    color: #0d47a1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Key Learnings */
.key-learnings {
    margin: 40px 0;
}

.key-learnings h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.learning-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.learning-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.learning-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.learning-card h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.learning-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Methodology Box */
.methodology-box {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    margin: 40px 0;
    border: 2px solid #dee2e6;
}

.methodology-box h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
}

.methodology-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.method-step {
    background: white;
    border: 2px solid #0066cc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    min-width: 150px;
}

.method-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.method-step p {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.method-connector {
    color: #0066cc;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Responsive Design for Market Entry Case */
@media (max-width: 768px) {
    .pain-points-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-showcase {
        grid-template-columns: 1fr;
    }
    
    .learning-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-flow {
        flex-direction: column;
    }
    
    .method-connector {
        transform: rotate(90deg);
    }
    
    .analysis-dimensions {
        flex-direction: column;
    }
    
    .dimension-tag {
        text-align: center;
    }
}


/* ===================================
   Case Regional Operation Specific Styles
   =================================== */

/* Initial Situation Box */
.initial-situation {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #ffa726;
}

.initial-situation h3 {
    color: #e65100;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.bottleneck-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    border: 2px solid #ff9800;
}

.bottleneck-box h4 {
    color: #e65100;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

/* Strategic Shift Box */
.strategic-shift {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid #4caf50;
}

.strategic-shift h3 {
    color: #2e7d32;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.shift-statement {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 5px solid #4caf50;
}

.shift-statement p {
    color: #1b5e20;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.7;
}

/* Problem Analysis Grid */
.problem-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.problem-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #dc3545 0%, #c82333 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.problem-card:hover::before {
    transform: scaleY(1);
}

.problem-card:hover {
    border-color: #dc3545;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
    transform: translateY(-2px);
}

.problem-number {
    display: inline-block;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem-content h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.problem-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Essence Statement */
.essence-statement {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border: 2px solid #ff9800;
    text-align: center;
}

.essence-statement h3 {
    color: #e65100;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.essence-statement p {
    color: #bf360c;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Redesign Sections */
.redesign-section {
    margin: 30px 0;
}

.redesign-block {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin: 25px 0;
    border: 2px solid #dee2e6;
}

.redesign-header {
    margin-bottom: 20px;
}

.redesign-badge {
    display: inline-block;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.redesign-header h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 10px 0 0 0;
}

.redesign-content {
    margin-top: 20px;
}

/* Role Grid */
.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.role-item {
    background: white;
    border: 2px solid #17a2b8;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.role-item:hover {
    background: #17a2b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.2);
}

.role-label {
    display: block;
    color: #17a2b8;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.role-item:hover .role-label {
    color: white;
}

.role-item p {
    color: #2c3e50;
    margin: 0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.role-item:hover p {
    color: white;
}

.note-text {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    color: #004085;
    font-style: italic;
}

/* Layer Structure */
.layer-structure {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px 0;
}

.layer-box {
    width: 100%;
    max-width: 500px;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin: 10px 0;
}

.region-layer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 3px solid #5a67d8;
}

.country-layer {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: 3px solid #ec4899;
}

.layer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.layer-desc {
    font-size: 1rem;
    opacity: 0.95;
}

.layer-arrow {
    font-size: 2.5rem;
    color: #6c757d;
    margin: 10px 0;
    font-weight: bold;
}

.benefit-note {
    background: #d4edda;
    padding: 18px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #28a745;
}

.benefit-note p {
    color: #155724;
    margin: 0;
    line-height: 1.6;
}

/* Implementation Process */
.implementation-process {
    margin: 30px 0;
}

.implementation-process h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.process-steps {
    position: relative;
    margin: 30px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    transform: translateX(5px);
}

.step-line {
    width: 3px;
    min-height: 60px;
    background: linear-gradient(180deg, #0066cc 0%, #00bcd4 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.role-emphasis {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    border-left: 4px solid #2196f3;
}

.role-emphasis p {
    color: #0d47a1;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.7;
}

/* Achievements List */
.achievements-list {
    margin: 30px 0;
}

.achievement-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.achievement-row:hover {
    border-color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
    transform: translateX(5px);
}

.achievement-indicator {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.2);
}

.achievement-detail h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.achievement-detail p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Most Important Box */
.most-important {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 3px solid #ff9800;
    text-align: center;
}

.most-important h3 {
    color: #e65100;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.most-important p {
    color: #bf360c;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Core Value Box */
.core-value-box {
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid #5c6bc0;
}

.core-value-box h3 {
    color: #283593;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.core-value-box p {
    color: #1a237e;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Consultant Role Box */
.consultant-role {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #0066cc;
}

.consultant-role h3 {
    color: #0066cc;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.consultant-role p {
    color: #2c3e50;
    line-height: 1.7;
    margin: 0;
}

/* Transformation Summary */
.transformation-summary {
    margin: 40px 0;
}

.transformation-summary h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
}

.transformation-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.flow-stage {
    background: white;
    border: 2px solid #0066cc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    min-width: 140px;
    transition: all 0.3s ease;
}

.flow-stage:hover {
    background: #0066cc;
    transform: scale(1.05);
}

.stage-title {
    font-weight: 700;
    color: #0066cc;
    font-size: 1rem;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.flow-stage:hover .stage-title {
    color: white;
}

.flow-stage p {
    color: #2c3e50;
    font-size: 0.9rem;
    margin: 0;
    transition: color 0.3s ease;
}

.flow-stage:hover p {
    color: white;
}

.flow-arrow {
    color: #0066cc;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Key Insights */
.key-insights {
    margin: 40px 0;
}

.key-insights h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.insight-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.insight-block {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.insight-block:hover {
    border-color: #ffc107;
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.2);
    transform: translateY(-3px);
}

.insight-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.insight-block p {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}

/* Responsive Design for Regional Operation Case */
@media (max-width: 768px) {
    .problem-analysis {
        grid-template-columns: 1fr;
    }
    
    .role-grid {
        grid-template-columns: 1fr;
    }
    
    .layer-box {
        max-width: 100%;
    }
    
    .transformation-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .insight-blocks {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-line {
        width: 100%;
        min-height: 3px;
    }
}


/* ===================================
   Contact Page - Team Section Styles
   =================================== */

/* Team Introduction Section */
.team-intro-section {
    margin: 60px 0;
    padding: 50px 0;
    background: #f8f9fa;
    border-radius: 12px;
}

.team-intro-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-description p {
    color: #2c3e50;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

/* Team Advantages Section */
.team-advantages-section {
    margin: 60px 0;
}

.team-advantages-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.team-advantages-section .advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advantage-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    transform: translateY(-3px);
}

.advantage-card h3 {
    color: #0066cc;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .team-intro-section {
        padding: 30px 15px;
    }
    
    .team-intro-section h2,
    .team-advantages-section h2 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .team-description p {
        font-size: 1rem;
    }
    
    .team-advantages-section .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* ========================================
   移动端适配样式
   ======================================== */

/* 平板设备 (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* 手机设备 (最大宽度 768px) */
@media (max-width: 768px) {
    /* 导航栏 */
    .header {
        padding: 10px 0;
    }
    
    .header .container {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        padding: 0 10px;
    }
    
    .logo {
        font-size: 0;
        flex-shrink: 0;
    }
    
    .logo span {
        display: none;
    }
    
    .logo img {
        height: 28px;
    }
    
    .nav {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        width: auto;
        flex: 1;
        overflow-x: auto;
    }
    
    .nav a {
        font-size: 13px;
        white-space: nowrap;
    }
    
    .nav a:last-child {
        display: none;
    }
    
    /* Hero 轮播图 */
    .hero {
        margin-top: 60px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .hero-content {
        width: 95%;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
        letter-spacing: 0.5px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        display: none;
    }
    
    .btn {
        padding: 12px 35px;
        font-size: 14px;
        width: 100%;
        max-width: 250px;
    }
    
    /* 核心价值 */
    .core-value {
        padding: 50px 0 60px;
    }
    
    .core-value h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .temple-image {
        margin-bottom: 50px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-item .icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .value-item .icon img {
        width: 40px;
        height: 40px;
    }
    
    .value-item h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .value-item p {
        font-size: 13px;
    }
    
    /* 核心服务 */
    .services {
        padding: 50px 0 60px;
    }
    
    .services h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .service-card p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    /* 页脚 */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-col p,
    .footer-col ul li a {
        font-size: 13px;
    }
    
    /* 关于我们页面 */
    .about-page {
        padding: 100px 0 50px;
    }
    
    .about-section h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .about-section p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .method-list li,
    .region-list li {
        font-size: 14px;
        line-height: 2;
    }
    
    /* 服务内容页面 */
    .services-page {
        padding: 80px 0 50px;
    }
    
    .services-intro h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .intro-text {
        font-size: 14px;
    }
    
    .service-detail h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .service-highlight {
        padding: 20px 20px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .service-highlight p {
        font-size: 14px;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-image {
        order: -1;
    }
    
    .service-list ul li {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px;
    }
    
    .service-note {
        padding: 15px 20px;
    }
    
    .service-note p {
        font-size: 14px;
    }
    
    /* 服务优势 */
    .service-advantages {
        padding: 50px 0;
        margin-top: 40px;
    }
    
    .service-advantages h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .advantage-icon img {
        width: 50px;
        height: 50px;
    }
    
    .advantage-item h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .advantage-item p {
        font-size: 13px;
    }
    
    /* 项目经验页面 */
    .cases-page {
        padding: 80px 0 50px;
    }
    
    .cases-intro h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .case-type-card {
        padding: 30px 25px;
    }
    
    .case-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .case-icon img {
        width: 45px;
        height: 45px;
    }
    
    .case-type-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .case-type-card p {
        font-size: 13px;
    }
    
    .case-type-card .case-slogan {
        font-size: 12px;
    }
    
    /* 行业经验 */
    .industry-section {
        padding: 50px 0;
        margin-top: 40px;
    }
    
    .industry-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin: 40px auto 30px;
    }
    
    .industry-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .industry-icon img {
        width: 45px;
        height: 45px;
    }
    
    .industry-item h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .industry-item p {
        font-size: 12px;
    }
    
    .industry-note {
        padding: 20px 25px;
        margin-top: 30px;
    }
    
    .industry-note p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 12px;
    }
    
    /* 客户评价 */
    .testimonials-section {
        padding: 50px 0 60px;
    }
    
    .testimonials-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .testimonials-list {
        margin: 40px auto 0;
        gap: 20px;
    }
    
    .testimonial-message {
        padding: 20px 20px;
    }
    
    .message-avatar {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .message-avatar img {
        width: 25px;
        height: 25px;
    }
    
    .message-info h3 {
        font-size: 15px;
        margin-bottom: 2px;
    }
    
    .message-info p {
        font-size: 12px;
    }
    
    .message-content {
        padding-left: 0;
        margin-top: 15px;
    }
    
    .message-content p {
        font-size: 13px;
        line-height: 1.7;
    }
    
    /* 合作客户 */
    .partners-section {
        padding: 50px 0 60px;
    }
    
    .partners-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .partners-image {
        margin-top: 40px;
        padding: 0 10px;
    }
    
    /* 团队介绍页面 */
    .team-page {
        padding: 80px 0 50px;
    }
    
    .team-intro h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .team-advantage-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-advantage-card {
        padding: 30px 25px;
    }
    
    .team-advantage-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .team-advantage-icon img {
        width: 60px;
        height: 60px;
    }
    
    .team-advantage-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .team-advantage-card p {
        font-size: 13px;
    }
    
    /* 核心管理团队 */
    .core-team-section {
        padding: 40px 0 50px;
        margin-top: 30px;
    }
    
    .core-team-header {
        padding: 35px 25px;
        border-radius: 12px 12px 0 0;
        margin-bottom: 0;
    }
    
    .core-team-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }
    
    .core-team-header p {
        font-size: 15px;
    }
    
    .team-members-grid,
    .team-members-grid-three {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .team-member-card {
        padding: 30px 25px;
        border-right: none;
    }
    
    .team-member-card:hover {
        transform: translateY(-3px);
    }
    
    .member-avatar {
        width: 65px;
        height: 65px;
        margin-right: 15px;
    }
    
    .member-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .member-info h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .member-title {
        font-size: 13px;
    }
    
    .member-description p {
        font-size: 13px;
        line-height: 1.8;
    }
    
    .member-detail p {
        font-size: 12px;
        line-height: 1.7;
    }
    
    .toggle-detail-btn {
        font-size: 12px;
        margin-top: 12px;
    }
    
    /* 东南亚本地顾问团队 */
    .local-team-section {
        padding: 40px 0 50px;
        margin-top: 40px;
    }
    
    /* 团队优势 */
    .team-benefits-section {
        padding: 50px 0 60px;
    }
    
    .team-benefits-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .benefit-icon img {
        width: 55px;
        height: 55px;
    }
    
    .benefit-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .benefit-card p {
        font-size: 13px;
        line-height: 1.7;
    }
    
    /* CTA部分 */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .cta-section .subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .cta-section .btn-primary {
        padding: 14px 40px;
        font-size: 15px;
    }
    
    /* 联系我们页面 */
    .contact-page {
        padding: 80px 0 50px;
    }
    
    .contact-intro h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .contact-info-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .contact-item {
        padding: 15px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-item:hover {
        padding-left: 0;
    }
    
    .contact-dot {
        font-size: 18px;
        margin-right: 10px;
        margin-bottom: 5px;
    }
    
    .contact-text {
        font-size: 14px;
    }
    
    /* 联系表单 */
    .contact-form-section {
        margin-top: 50px;
    }
    
    .contact-form-section h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .form-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .btn-submit {
        padding: 14px;
        font-size: 15px;
    }
}

/* 小屏手机设备 (最大宽度 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .hero-content h1 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 12px;
    }
    
    .core-value h2,
    .services h2,
    .service-advantages h2,
    .cases-intro h1,
    .industry-section h2,
    .testimonials-section h2,
    .partners-section h2,
    .team-intro h1,
    .team-benefits-section h2,
    .cta-section h2,
    .contact-intro h1 {
        font-size: 24px;
    }
    
    .service-highlight {
        padding: 15px 15px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .core-team-header {
        padding: 25px 20px;
    }
    
    .core-team-header h2 {
        font-size: 24px;
    }
    
    .team-member-card {
        padding: 25px 20px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
}
