.about-us-main {
    padding: 0;
}

.about-us-panel {
    padding: 28px 48px 72px;
}

.about-us-section {
    margin-bottom: 58px;
}

.about-us-section:last-child {
    margin-bottom: 0;
}

.about-us-section-title {
    position: relative;
    margin: 0 0 22px;
    font-size: 16px;
    font-weight: 700;
    color: #303133;
    line-height: 24px;
}


.about-us-intro {
    overflow: hidden;
}

.about-us-intro-image {
    float: right;
    width: 430px;
    margin: 0 0 16px 42px;
    border-radius: 4px;
    overflow: hidden;
}

.about-us-intro-image img {
    display: block;
    width: 100%;
    height: auto;
}

.about-us-copy p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 32px;
    color: #4b5563;
}

.about-us-copy p:last-child {
    margin-bottom: 0;
}

.about-us-highlight-title {
    margin: 22px 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: #303133;
    line-height: 24px;
}

.about-us-values {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 34px;
    align-items: center;
}

.about-us-value-item {
    display: flex;
    align-items: center;
    min-width: 150px;
}

.about-us-value-icon {
    width: 48px;
    height: 48px;
    margin-right: 12px;
}

.about-us-value-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.about-us-value-text {
    font-size: 14px;
    color: #303133;
    line-height: 22px;
    white-space: nowrap;
}

.about-us-products {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.about-us-product-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #dfe6ef;
    height: 370px;
}

.about-us-product-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-product-card:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 20, 43, 0.08) 0%, rgba(6, 20, 43, 0.45) 100%);
}

.about-us-product-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1199px) {
    .about-us-panel {
        padding: 28px 32px 56px;
    }

    .about-us-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .about-us-panel {
        padding: 24px 20px 40px;
    }

    .about-us-intro-image {
        float: none;
        width: 100%;
        margin: 0 0 20px;
    }

    .about-us-copy p {
        line-height: 28px;
    }

    .about-us-values {
        gap: 16px 20px;
    }

    .about-us-value-item {
        width: calc(50% - 10px);
        min-width: 0;
    }

    .about-us-value-text {
        white-space: normal;
    }

    .about-us-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .about-us-product-card {
        height: 300px;
    }
}
