/chuangbo-website/chuangbo-website/src/assets/css/responsive.css

@media only screen and (max-width: 1200px) {
    body {
        font-size: 14px;
    }
    .header, .footer {
        padding: 10px;
    }
    .navigation {
        display: block;
    }
}

@media only screen and (max-width: 992px) {
    .products-list {
        flex-direction: column;
    }
    .product-item {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .header {
        text-align: center;
    }
    .navigation {
        display: none;
    }
    .navigation.active {
        display: block;
    }
}

@media only screen and (max-width: 576px) {
    .footer {
        font-size: 12px;
    }
    .contact-form input, .contact-form textarea {
        width: 100%;
    }
}