/* 定义主题色系变量 */
:root {
    --primary-color: #2563EB;
    --primary-dark: #1D4ED8;
    --dark-bg: #0F172A;
    --card-bg: #1E293B;
    --text-primary: #E2E8F0;
    --text-secondary: #94A3B8;
    --gradient-bg: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

/* 通用内容区域样式 */
.about-section,
.vision-section,
.strength-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.vision-section {
    background: var(--card-bg);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
}

.text-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.content-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.image-content img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

/* 删除多余的重复样式 */
.vision-section .text-content h2,
.vision-section .content-text,
.vision-section .image-content img {
    /* 使用通用样式即可 */
}

/* vision-section 特殊样式调整 */
.vision-section .content-wrapper {
    direction: ltr;  /* 重置方向 */
}

.vision-section .text-content {
    order: 2;  /* 文字内容放到第二位 */
}

.vision-section .image-content {
    order: 1;  /* 图片内容放到第一位 */
}

/* 响应式调整 */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .content-wrapper.reverse {
        direction: ltr;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .about-section,
    .vision-section,
    .strength-section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .text-content h2 {
        font-size: 1.75rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .vision-section {
        padding: 3rem 0;
    }
    
    .vision-section .text-content h2 {
        font-size: 2rem;
    }
    
    .vision-section .content-text {
        font-size: 1rem;
    }
}