
.about-module {
    width: 100%;
    background-color: #f9fafb;
    border-radius: 24px;
    margin: 24px 0;
}
.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px;
    box-sizing: border-box;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.about-left {
    flex: 0 0 60%;
}
.about-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #222222;
    margin-bottom: 16px;
}
.about-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #555555;
    margin-bottom: 16px;
}
.about-desc:last-of-type {
    margin-bottom: 24px;
}
.value-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.value-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.value-icon {
    font-size: 28px;
    flex-shrink: 0;
}
.value-content {
    flex: 1;
}
.value-content strong {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #0047AB;
    margin-bottom: 6px;
}
.value-content span {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: #555555;
}
.about-right {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.factory-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.factory-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.stat-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 16px 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}
.stat-number {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #0047AB;
    margin-bottom: 8px;
    line-height: 1.2;
}
.stat-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #555555;
}
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 32px;
        padding: 28px 24px;
    }
    .about-left,
    .about-right {
        flex: auto;
        width: 100%;
    }
    .stats-grid {
        flex-direction: row;
        gap: 16px;
    }
    .stat-card {
        flex: 1;
    }
}
@media (max-width: 640px) {
    .about-container {
        padding: 24px 20px;
    }
    .about-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    .about-desc {
        font-size: 14px;
    }
    .value-content strong {
        font-size: 16px;
    }
    .value-content span {
        font-size: 13px;
    }
    .stats-grid {
        flex-direction: column;
        gap: 12px;
    }
    .stat-number {
        font-size: 18px;
    }
    .stat-label {
        font-size: 12px;
    }
}
