/* About Us 模块样式 */
.about-home {
    background-size: cover;
    background-position: 50% 50%;
    padding: 150px 0;
}

.about-home .company-text {
    text-transform: uppercase;
    font-size: 78px;
    font-weight: bold;
    color: #eee;
    margin-top: -40px;
    letter-spacing: 5px;
    font-family: Arial Black, sans-serif;
}

.about-home h2 {
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
}

.about-home p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-home .catalog-btn {
    background: #ddbd84;
    color: #333;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* 最新产品模块样式 */
.latest-products {
    padding: 100px 0;
    background: #f9f9f9;
}

.latest-products h2 {
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.latest-products .subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.latest-products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.latest-products .product-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.latest-products .product-card:hover {
    transform: translateY(-5px);
}

/* 产品卡片链接 */
.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.latest-products .product-image {
    height: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.latest-products .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.latest-products .product-info {
    padding: 20px;
}

.latest-products .product-info h3 {
    margin-bottom: 10px;
    color: #333;
}

.latest-products .product-info p {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.latest-products .product-info a {
    color: #ddbd84;
    text-decoration: none;
    font-weight: bold;
}

.latest-products .view-all {
    text-align: center;
    margin-top: 50px;
}

.latest-products .view-all a {
    background: #ddbd84;
    color: #333;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-radius: 4px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .about-home {
        padding: 80px 0;
    }
    
    .about-home .company-text {
        font-size: 40px;
        margin-top: -20px;
    }
    
    .about-home h2 {
        font-size: 24px;
    }
    
    .latest-products {
        padding: 60px 0;
    }
    
    .latest-products h2 {
        font-size: 24px;
    }
    
    .latest-products .product-grid {
        grid-template-columns: 1fr;
    }
}