html,
body {
    margin: 0;
    padding: 0;
}

.content-wrapper {
    font-family: Montserrat !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.h1-header {
    line-height: 1.4;
    font-size: 28px;
    color: #00362A;
    text-align: center;
    font-weight: 600;
    margin: 0;
    margin-top: 40px;
    margin-bottom: 30px;
    font-family: Montserrat;
}

.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    column-gap: 30px;
    row-gap: 20px;
    padding: 0;
    max-width: 1300px;
    margin: 0 auto 40px;
    width: 100%;
}

.category {
    justify-self: center;
    text-align: center;
    max-width: 400px;
    align-items: start;
    width: 100%;
    transition: transform 0.3s;
}

.category:hover {
    transform: scale(1.03);
}

.category a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: 5px;
}

.category h3 {
    color: #00362A;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 12px;
    margin-bottom: 0;
}

.cat-image {
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
}

.cat-image img {
    transition: transform 0.3s ease;
}

.category:hover .cat-image img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .categories {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 15px;
    }

    .h1-header {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 15px;
    }

    .categories {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .h1-header {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 10px;
    }

    .category h3 {
        font-size: 14px;
    }

    .h1-header {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 15px;
    }
}

/* ABOUT SECTION */
.about {
    max-width: 1300px;
    margin: 0 auto 40px;
    width: 100%;
    padding: 0 20px;
}

.about-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

.about-image {
    width: 50%;
    position: relative;
}

.about-text {
    width: 50%;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.about-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: 5px;
}

.about-image > .about-text {
    display: none;
}

.about > .swiper {
    display: none;
}

.about .no-swiper {
    display: block;
}

@media (max-width: 1024px) {
    .about-block {
        gap: 20px;
    }

    .about-text,
    .about-image {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 0 15px;
    }

    .about-block {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }

    .about-text {
        display: none;
        width: 100%;
    }

    .about-image {
        width: 100%;
        position: relative;
    }

    .about-image img {
        -webkit-filter: brightness(50%);
        filter: brightness(50%);
    }

    .about-image > .about-text {
        display: flex;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(0, -50%);
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
        padding: 20px;
        text-align: center;
        z-index: 1;
    }

    .about > .swiper {
        display: none;
    }

    .about > .no-swiper {
        display: block;
    }
}

@media (max-width: 600px) {
    .about {
        padding: 0 10px;
    }

    .about > .swiper {
        display: block;
        height: 400px;
        margin-bottom: 20px;
    }

    .about > .no-swiper {
        display: none;
    }

    .about-image img {
        height: 100%;
        object-position: center;
    }
}

@media (max-width: 400px) {
    .about > .swiper {
        height: 300px;
    }
}

/* SUPPLIERS */
.suppliers {
    max-width: 1300px;
    margin: 0 auto 40px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.sup-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 25px;
    margin-top: 25px;
    align-items: center;
}

.sup-logo img {
    width: 100%;
    max-height: 90px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.sup-logo img:hover {
    opacity: 1;
}

@media (max-width: 1024px) {
    .sup-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .suppliers {
        padding: 0 15px;
    }

    .sup-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .suppliers {
        padding: 0 10px;
    }

    .sup-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .sup-logo img {
        max-height: 70px;
    }
}