/* Company Overview Section Styles */
.company-overview {
    padding: 60px 0;
}

.overview-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.overview-text {
    flex: 1;
}

.overview-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.company-stats {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px;
    flex: 1;
    min-width: 120px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.overview-image {
    flex: 1;
    position: relative;
}

.company-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-caption {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.85);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 80%;
}

/* Company specific styles */
.intro-content {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
}

/* Achievement Grid Styles */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    margin-top: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.achievement-item {
    text-align: center;
    padding: 15px 10px;
    position: relative;
    transition: transform 0.2s ease;
    border-radius: 8px;
}

.achievement-item:hover {
    transform: translateY(-3px);
    background-color: rgba(194, 42, 48, 0.05);
}

.achievement-item:nth-child(1),
.achievement-item:nth-child(2),
.achievement-item:nth-child(3) {
    margin-bottom: 10px;
}

.achievement-number {
    font-size: 46px;
    font-weight: bold;
    color: #c22a30; /* 红色 */
    line-height: 1;
    display: inline-block;
}

.achievement-label {
    font-size: 28px;
    color: #c22a30;
    display: inline-block;
    margin-left: 3px;
    font-weight: bold;
}

.achievement-desc {
    font-size: 10px;
    font-weight: bold;
    margin-top: 5px;
}

.achievement-en {
    display: none; /* 隐藏英文说明 */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .overview-content {
        flex-direction: column;
    }
    
    .overview-text, .overview-image {
        width: 100%;
    }
    
    .company-stats {
        justify-content: center;
    }
    
    .stat-item {
        margin: 10px;
    }
    
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-content {
        flex-direction: column;
    }
    
    .intro-text, .intro-image {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 42px;
    }
    
    .achievement-label {
        font-size: 26px;
    }
}
