/* ✅ 统一企业历史标题美化 */
.sustainability-section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: left; /* ✅ 左对齐 */
    color: #002FA7;
    margin: 20px 0 30px;
    position: relative;
    padding-left: 15px; /* ✅ 增加左侧内边距，防止贴边 */
}
/* ==================== Contact Stylish Heading ==================== */
.sustainability-stylish-heading {
    font-family: 'Cormorant SC', cursive;
    font-size: 3.2em;
    font-weight: 700;
    color: #013DC4;
    margin-bottom: 20px;
    text-align: center; /* ✅ 居中显示 */
    line-height: 1.4;
    opacity: 1; /* ✅ 修正透明度问题，默认可见 */
    animation: fadeInText 1.2s ease-in-out 0.5s forwards;
}

/* ✅ 标题动画效果 */
@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sustainability-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* ✅ 让横线稍微远离文字，保持美观 */
    width: 120px; /* ✅ 横线长度 */
    height: 4px; /* ✅ 横线厚度，确保明显 */
    background: linear-gradient(to right, #002FA7, #0056b3); /* ✅ 蓝色渐变，更高级 */
    border-radius: 2px;
}
/* ✅ 确保企业简介模块不会超出 1400px */
#company-intro {
    max-width: 1400px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow: hidden;
}

/* ✅ 公司简介内容 */
.company-intro-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* ✅ 文本区域 */
.company-intro-text {
    flex: 1;
    padding-right: 40px;
}

.company-intro-text p {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

.company-intro-list {
    margin-top: 10px;
    padding-left: 0;
}

.company-intro-list li {
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.company-intro-list li i {
    color: #12A237;
    margin-right: 10px;
}

/* ✅ 图片区域 */
.company-intro-image {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ✅ 修正图片区域的最大宽度 */
.company-intro-image img {
    width: 80%; /* 适应容器 */
    max-width: 500px; /* 最大宽度，避免图片过大 */
    height: auto; /* 保持原始宽高比 */
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* ✅ 图片悬浮动态效果 */
.company-intro-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ✅ 响应式优化 */
@media (max-width: 1024px) {
    .company-intro-image {
        text-align: center;
    }

    .company-intro-image img {
        width: 90%; /* 在平板上稍微增大 */
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .company-intro-image img {
        width: 100%; /* 在移动端占满 */
        max-width: 400px;
    }
}


/* ✅ 统计数据（合并到 company-intro 内） */
.status-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 20px;
    background: #F5F5F7;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ✅ 统计项 */
.status-item {
    text-align: center;
    padding: 20px;
    flex: 1;
}

.status-item i {
    font-size: 30px;
    color: #12A237;
    margin-bottom: 10px;
}

.status-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.status-item p {
    font-size: 22px;
    font-weight: bold;
    color: #12A237;
}

/* ✅ 响应式优化 */
@media (max-width: 1024px) {
    .company-intro-content {
        flex-direction: column;
        text-align: center;
    }

    .company-intro-text {
        padding-right: 0;
    }

    .company-intro-image {
        width: 100%;
        margin-top: 20px;
    }

    .status-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .status-item {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .company-intro-content {
        flex-direction: column;
        text-align: center;
    }

    .company-intro-image img {
        width: 100%;
    }

    .status-container {
        flex-direction: column;
        gap: 20px;
    }

    .status-item {
        width: 100%;
    }
}
/* ✅ 认证模块 */
.sustainability-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* ✅ 让卡片每行两列，40% 左侧 Logo + 60% 右侧信息 */
.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr; /* 让所有卡片占满一行 */
    gap: 20px;
    justify-content: center;
}

/* ✅ 认证卡片 */
.sustainability-cert-card {
    display: flex;
    align-items: center;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* ✅ 悬浮动态效果 */
.sustainability-cert-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ✅ 左侧 Logo (占 40%) */
.cert-left {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.cert-left img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

/* ✅ 悬浮时 Logo 放大 */
.cert-left img:hover {
    transform: scale(1.1);
}

/* ✅ 右侧内容 (占 60%) */
.cert-right {
    width: 60%;
    text-align: left;
    padding-left: 20px;
}

.cert-right h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #002FA7;
    margin-bottom: 8px;
}

.cert-right p {
    font-size: 1rem;
    color: #555;
}

/* ✅ 响应式优化 */
@media (max-width: 1024px) {
    .sustainability-cert-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cert-left {
        width: 100%;
        text-align: center;
    }

    .cert-left img {
        width: 100px;
        height: 100px;
    }

    .cert-right {
        width: 100%;
        padding-left: 0;
        margin-top: 10px;
    }
}
