/* 中文环境特定样式 */

/* 服务卡片列表项样式 */
.service-card li {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

/* features-section 卡片小字样式 */
.features-section .feature-card p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* partner-network 图标标题样式 */
.partner-item span {
    font-size: 14px;
}

/* hero区域调整 */

.hero-content {
    padding-left: 8%;
    padding-right: 10%;
    max-width: 750px;
}

.hero-title {
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.6;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.hero-title-line {
    display: block;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* =========================================
   About / Focus 页面 - 中文字体覆盖
   ========================================= */

.about-hero-title,
.feature-content h3,
.about-section-title,
.value-card h3,
.mission-box h2,
.vision-box h2,
.about-section-title-center,
.focus-hero-title,
.section-title,
.core-area-title,
.service-hero-title,
.connect-section .section-title,
.cooperation-section .section-title,
.value-title {
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

/* Service Card Link */
.service-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

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

.service-card-link:hover .service-icon img {
    transform: scale(1.1);
}

/* =========================================
   Focus Page Styles - 核心领域页面
   ========================================= */

/* Focus Hero Section */
.focus-hero {
    background: var(--bg-cream);
}

.focus-hero-wrapper {
    position: relative;
    width: 100%;
}

.focus-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 75vh;
    position: relative;
    padding: 0;
    margin: 0 auto;
    max-width: none;
    background: var(--bg-cream);
    overflow: hidden;
}

.focus-hero-content {
    flex: 1 1 55%;
    padding: 60px 5% 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
    max-width: 850px;
}

.focus-hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.focus-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.focus-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(250, 248, 243, 1) 0%,
        rgba(250, 248, 243, 0.95) 10%,
        rgba(250, 248, 243, 0.5) 25%,
        rgba(250, 248, 243, 0.1) 100%,
        transparent 55%
    );
    pointer-events: none;
    z-index: 2;
}

.focus-hero-title {
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.5;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.focus-hero-tagline {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.focus-hero-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 18px;
    max-width: 700px;
}

/* Core Areas Section */
.core-areas {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    font-style: italic;
    letter-spacing: 2px;
}

.section-intro-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    max-width: 720px;
    margin: 20px auto 0;
}

.core-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.core-area-card {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.core-area-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.core-area-image-header {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.core-area-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.core-area-card:hover .core-area-image-header img {
    transform: scale(1.05);
}

.card-info-wrap {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.core-area-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(201, 169, 110, 0.45);
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.core-area-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.core-area-english {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.core-area-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.core-area-focus {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.core-area-focus .focus-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.focus-tags span {
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Vision Section */
.focus-vision {
    padding: 120px 0;
    background: var(--primary-color);
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vision-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.vision-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.vision-tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.vision-desc {
    font-size: 15px;
    color: var(--text-white-secondary);
    line-height: 1.9;
}

/* CTA Section */
.focus-cta {
    padding: 100px 0;
    background: var(--bg-cream);
    text-align: center;
}

.focus-cta .cta-tagline {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.focus-cta .cta-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Focus Page Responsive */
@media (max-width: 1024px) {
    .core-areas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .focus-hero-container {
        flex-direction: column;
    }
    
    .focus-hero-content {
        order: 1;
        flex: 1;
        width: 100%;
        padding: 50px 30px;
        min-height: 400px;
    }
    
    .focus-hero-image {
        order: 2;
        flex: 1;
        width: 100%;
        min-height: 280px;
    }
    
    .focus-hero-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .focus-hero-content {
        padding: 40px 20px;
        min-height: 350px;
    }
    
    .focus-hero-image {
        min-height: 220px;
    }
    
    .focus-hero-title {
        font-size: 28px;
    }
    
    .core-area-card {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .focus-hero-content {
        padding: 30px 15px;
        min-height: 300px;
    }
    
    .focus-hero-image {
        min-height: 180px;
    }
    
    .focus-hero-title {
        font-size: 24px;
    }
    
    .focus-hero-tagline {
        font-size: 16px;
    }
    
    .focus-hero-desc {
        font-size: 14px;
    }
}

/* ==================== Projects Page Styles ==================== */

.projects-showcase {
    padding: 100px 0 80px;
    background: var(--bg-white);
}

.projects-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.projects-label {
    font-size: 14px;
    font-weight: 900;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.projects-main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.projects-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.header-line {
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
    margin: 16px auto 24px;
    border-radius: 1px;
}

.project-blocks {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.project-block {
    display: flex;
    align-items: stretch;
    min-height: 420px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.project-block:last-child {
    border-bottom: none;
}

.project-block.reverse {
    flex-direction: row-reverse;
}

.project-visual {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
}

.project-visual-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8e4d8 100%);
    z-index: 0;
}

.project-block:nth-child(odd) .project-visual-bg {
    background: linear-gradient(135deg, #f5f0e8 0%, #ebe7dc 100%);
}

.project-block:nth-child(even) .project-visual-bg {
    background: linear-gradient(135deg, #edf2ec 0%, #e0ebe0 100%);
}

.project-icon-wrap {
    position: relative;
    z-index: 1;
    width: 150px;
    height: 150px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.project-block:hover .project-icon-wrap {
    transform: scale(1.08);
}

.project-icon-wrap img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.project-num {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 90px;
    font-weight: 800;
    color: rgba(201, 169, 110, 0.12);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.project-block.reverse .project-num {
    right: auto;
    left: 40px;
}

.project-details {
    flex: 1;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-details h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.project-en-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.project-divider {
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px;
    margin-bottom: 18px;
}

.project-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 480px;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.project-features li {
    font-size: 14px;
    color: var(--text-primary);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.project-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

/* Projects Page Responsive */
@media (max-width: 900px) {
    .project-block,
    .project-block.reverse {
        flex-direction: column;
    }
    
    .project-visual {
        flex: 0 0 auto;
        min-height: 280px;
    }
    
    .project-details {
        padding: 35px 25px;
    }
    
    .project-num {
        font-size: 60px;
    }
    
    .projects-main-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .project-features {
        grid-template-columns: 1fr;
    }
    
    .project-details h3 {
        font-size: 22px;
    }
    
    .project-icon-wrap {
        width: 110px;
        height: 110px;
    }
    
    .project-icon-wrap img {
        width: 55px;
        height: 55px;
    }
}

/* ==================== Service Page Styles ==================== */

/* Service Hero */
.service-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(250, 248, 243, 0.95) 0%,
        rgba(250, 248, 243, 0.7) 50%,
        rgba(250, 248, 243, 0.3) 100%
    );
}

.service-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 700px;
}

.service-hero-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.service-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Service Introduction */
.service-intro {
    padding: 80px 0;
    background: var(--bg-cream);
}

.service-intro-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* What We Connect Section */
.connect-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.connect-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.connect-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.connect-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ---- About Page Connect Section (中文版覆盖) ---- */
.about-connect .connect-section-desc {
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.about-connect .connect-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.about-connect .connect-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 36px 20px;
    background: transparent;
    border-radius: 0;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-connect .connect-item:hover {
    transform: none;
    box-shadow: none;
    background: var(--bg-white);
}

.about-connect .connect-item:nth-child(3n) {
    border-right: none;
}

.about-connect .connect-item:nth-child(n+4) {
    border-bottom: none;
}

.about-connect .connect-item-title {
    font-size: 15px;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.about-connect .connect-item-subtitle {
    font-size: 12px;
    text-align: center;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.5;
}

.about-connect .connect-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.about-connect .connect-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

/* ---- About Connect End ---- */

.connect-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.connect-icon-emoji {
    font-size: 32px;
}

.connect-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.connect-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Core Cooperation Section */
.cooperation-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.cooperation-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.cooperation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cooperation-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cooperation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.cooperation-image-header {
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
}

.cooperation-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.cooperation-card:hover .cooperation-image-header img {
    transform: scale(1.05);
}

.cooperation-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cooperation-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.cooperation-card-content > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.cooperation-includes {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.cooperation-includes h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.cooperation-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.cooperation-includes li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.cooperation-includes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Value Section */
.value-section {
    padding: 100px 0;
    background: var(--primary-color);
    text-align: center;
}

.value-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
}

.value-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.value-desc {
    font-size: 16px;
    color: var(--text-white-secondary);
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Service CTA */
.service-cta {
    padding: 100px 0;
    background: var(--bg-cream);
    text-align: center;
}

.service-cta .cta-tagline {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.service-cta .cta-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Service Page Responsive */
@media (max-width: 1024px) {
    .connect-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cooperation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .service-hero-title {
        font-size: 36px;
    }
    
    .service-hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 45vh;
    }
    
    .service-hero-content {
        padding: 60px 0;
    }
    
    .service-hero-title {
        font-size: 32px;
    }
    
    .connect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .connect-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .connect-icon-emoji {
        font-size: 26px;
    }
    
    .cooperation-card {
        padding: 30px;
    }
    
    .cooperation-includes ul {
        grid-template-columns: 1fr;
    }

    .about-connect .connect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-connect .connect-item {
        border-right: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }
    .about-connect .connect-item:nth-child(2n) {
        border-right: none;
    }
    .about-connect .connect-item:nth-child(n+5) {
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    .service-hero {
        min-height: 40vh;
    }
    
    .service-hero-content {
        padding: 40px 0;
    }
    
    .service-hero-title {
        font-size: 28px;
    }
    
    .service-hero-subtitle {
        font-size: 16px;
    }
    
    .service-intro {
        padding: 60px 0;
    }
    
    .service-intro-text {
        font-size: 16px;
    }
    
    .connect-section,
    .cooperation-section {
        padding: 60px 0;
    }
    
    .connect-section .section-title,
    .cooperation-section .section-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-connect .connect-grid {
        grid-template-columns: 1fr;
    }
    .about-connect .connect-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .about-connect .connect-item:last-child {
        border-bottom: none;
    }
    
    .connect-item {
        padding: 20px;
    }
    
    .value-title {
        font-size: 28px;
    }
}