/* ZhuYun.html specific styles */
.service-section {
    padding: 60px 0;
}
.feature-box .icon {
    color: #2196F3;
}
.material-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.material-item {
    text-align: center;
    padding: 25px 20px;
    background: #f8f8f8;
    border-radius: 4px;
    border-top: 3px solid #2196F3;
    transition: all 0.3s ease;
}
.material-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.material-item h5 {
    margin-bottom: 10px;
    color: #333;
}
.material-item p {
    color: #666;
    font-size: 14px;
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 30px;
}
.brand-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
}
.brand-item h6 {
    color: #333;
    margin-bottom: 5px;
}
.brand-item p {
    color: #999;
    font-size: 12px;
}
