@media (max-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    h4 {
        font-size: 18px;
    }
    
    h5 {
        font-size: 10px;
    }
    
    h6 {
        font-size: 8px;
    }
    
    p, span {
        font-size: 18px;
    }

    .header__logo {
        width: 50px;
        height: 50px;
    }

    .header__title > h2 {
        font-size: 24px;
    }

    .intro {
        height: 60vh;
    }

    .intro__wrapper > div > a {
        padding: 6px 38px;
    }

    .products__heading {
        margin-bottom: 26px;
    }

    .products__card-number {
        top: -10px;
        left: -10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .products {
        padding-bottom: 60px;
    }

    .about-product__intro {
        display: flex;
        flex-direction: column;
    }

    .about-product__info-section {
        display: flex;
        flex-direction: column;
    }

    .about-product__docks-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 550px) {

    .header__logo {
        width: 40px;
        height: 40px;
    }

    .header__title {
        display: none;
    }

    .header__title > p {
        font-size: 12px;
    }

    .intro__wrapper > h1 {
        font-size: 32px;
    }

    .products__card {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 300px;
        padding: 30px;
    }

    .product__card-meta > a {
        padding: 4px 20px;
        border-radius: 14px;
    }

    .footer__wrapper {
        display: grid;
        gap: 14px;
        grid-template-columns: 1fr;
        margin-bottom: 12px;
    }

    .footer__copyright {
        font-size: 10px;
    }
}