﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    background-color: rgb(255, 255, 255);
    width: 100%;
    overflow-x: hidden;
}
.productcategory-container {
    width: 100%;
    background: linear-gradient(to right, rgb(51, 176, 100), rgb(127, 101, 162));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}


  .about-container {
            position: relative;
            width: 80%;
            max-width: 1100px;
            height: 450px;
            background: linear-gradient(to right, rgb(204, 235, 216, 0.9), rgb(223, 216, 232));
            border: 2px solid #fff;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px auto 0 auto;
            color: #fff;
        }

    .about-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/static/images/capsula.jpg');
        background-size: cover;
        background-position: center;
        z-index: -1;
    }

.left-section {
    flex: 0 0 40%;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

    .left-section h1 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 8px;
        background: linear-gradient(to right, rgb(51, 176, 100) 0%, rgb(65, 26, 117) 50%, rgb(51, 176, 100) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
    }

.right-section {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

    .right-section p {
        font-size: 17px;
        line-height: 1.5;
        color: #000;
        margin-bottom: 20px;
        margin-right: 42px;
    }

    .right-section .highlight {
        color: #4CAF50;
        font-size: 18px;
        font-weight: 500;
    }

.experience-wrapper {
    position: relative;
    display: inline-block;
    padding: 18px;
    border-radius: 10px;
    background: transparent;
    z-index: 1;
}

    .experience-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1.0px;
        opacity: 0.5;
        background: linear-gradient(to right, rgb(51, 176, 100), rgb(127, 101, 162));
        border-radius: 10px;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        -webkit-mask-composite: exclude;
        z-index: -1;
    }

.experience {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: transparent;
    border-radius: 12px;
    gap: 20px;
    flex-wrap: wrap;
}

    .experience div {
        text-align: center;
        flex: 1;
        position: relative;
        min-width: 100px;
    }

        .experience div:not(:last-child)::after {
            content: '';
            display: block;
            width: 1px;
            height: 70px;
            background: linear-gradient(to bottom, rgba(31, 106, 70, 1), rgba(85, 60, 130, 1));
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
        }

        .experience div span {
            display: block;
            font-size: 45px;
            font-family: 'Fraunces';
            background: linear-gradient(to bottom, rgba(31, 106, 70, 1), rgba(85, 60, 130, 1));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .experience div h1 {
            font-size: 16px;
            font-weight: 500;
            margin-top: 4px;
            text-transform: uppercase;
            color: #222;
            font-family: 'Poppins', sans-serif;
        }

.about-subcontainer {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto 40px auto;
    background: linear-gradient(to right, rgb(204, 235, 216), rgb(223, 216, 232));
    padding: 20px;
    text-align: center;
    border-radius: 0 0 15px 15px;
    position: relative;
}

    .about-subcontainer .items-wrapper {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 20px;
    }

    .about-subcontainer .item {
        width: 33%;
        text-align: left;
        background: transparent;
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 20px;
        box-sizing: border-box;
        transition: transform 0.3s ease;
        position: relative;
        border-radius: 15px;
        z-index: 1;
    }

        .about-subcontainer .item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 15px;
            padding-left: 1px;
            padding-right: 1px;
            padding-top: -1px;
            padding-bottom: -4px;
            background: linear-gradient(to bottom, rgb(51, 176, 100), rgb(65, 26, 117));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: destination-out;
            mask-composite: exclude;
            opacity: 0.5;
            z-index: -1;
            pointer-events: none;
        }

        .about-subcontainer .item:hover {
            transform: translateY(-5px);
        }

    .about-subcontainer .h1-item {
        font-size: 28px;
        font-weight: 500;
        color: #000;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: left;
    }

    .about-subcontainer .p-item {
        font-size: 16px;
        color: #656565;
        line-height: 1.6;
        margin: 0;
    }

    .about-subcontainer .icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
        vertical-align: middle;
        background: none;
        fill: url(#icon-gradient);
    }

    .about-subcontainer svg {
        width: 0;
        height: 0;
        position: absolute;
    }

.recommend-container {
    position: relative;
    width: 80%;
    max-width: 1100px;
    height: 500px;
    background: linear-gradient(to right, rgba(236, 247, 239), rgba(242, 239, 246));
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #fff;
    margin: 80px auto;
}

    .recommend-container .recommend-title {
        font-size: 38px;
        font-weight: 700;
        background: linear-gradient(to right, rgb(51, 176, 100) 0%, rgb(65, 26, 117) 50%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    .recommend-container h1.recommend-title {
        margin-top: 40px;
    }

    .recommend-container h2.recommend-title {
        font-size: 38px;
        font-weight: 700;
        margin-top: 10px;
        margin-bottom: 10px;
        background: linear-gradient(to right, rgb(51, 176, 100) 0%, rgb(65, 26, 117) 50%, rgb(51, 176, 100) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .recommend-container .items-wrapper {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin: 0;
    }

    .recommend-container .item {
        width: 32%;
        height: 250px;
        text-align: center;
        background: #ffffff;
        border-radius: 10px;
        margin-top: 20px;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .recommend-container .item:hover {
            transform: translateY(-5px);
        }

    .recommend-container .h1-item {
        font-size: 20px;
        font-weight: 700;
        color: rgb(65, 28, 112);
        margin-bottom: 10px;
    }

    .recommend-container .p-item {
        font-size: 16px;
        color: #000;
        line-height: 1.6;
        margin: 0;
    }

.sertificates {
    width: 80%;
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 20px;
}

    .sertificates h1 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        background: linear-gradient(to right, rgb(51, 176, 100) 0%, rgb(65, 26, 117) 50%, rgb(51, 176, 100) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
        display: inline-block;
    }

    .sertificates .partner-logos {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        flex-wrap: nowrap;
    }

        .sertificates .partner-logos img {
            width: 300px;
            height: 175px;
            object-fit: fill;
            border-style: solid;
            border-width: 0.5px;
            border-color: #dbd6d6;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

            .sertificates .partner-logos img:hover {
                transform: scale(1.1);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            }

.advantages {
    position: relative;
    width: 80%;
    max-width: 1100px;
    height: 500px;
    background: linear-gradient(to right, rgba(236, 247, 239), rgba(242, 239, 246, 0.9));
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    margin: 80px auto;
}

    .advantages::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/static/images/galochka.png');
        background-size: cover;
        background-position: center;
        z-index: -1;
    }

    .advantages .recommend-title {
        font-size: 38px;
        font-weight: 700;
        background: linear-gradient(to right, rgb(51, 176, 100) 0%, rgb(65, 26, 117) 50%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        text-align: center;
    }

    .advantages h1.recommend-title {
        margin-bottom: 30px;
        margin-top: 40px;
    }

    .advantages .items-wrapper {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin: 0;
    }

    .advantages .item {
        width: 32%;
        height: 250px;
        background: #ffffff;
        border-radius: 15px;
        margin-top: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        position: relative;
        z-index: 1;
    }

        .advantages .item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 15px;
            padding: 1px;
            background: linear-gradient(to bottom, rgb(51, 176, 100), rgb(65, 26, 117));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: destination-out;
            mask-composite: exclude;
            opacity: 0.3;
            z-index: -1;
            pointer-events: none;
        }

        .advantages .item:hover {
            transform: translateY(-5px);
        }

    .advantages .h1-item {
        font-size: 20px;
        font-weight: 700;
        color: rgb(65, 28, 112);
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
        margin-top: 20px;
    }

    .advantages .p-item {
        font-size: 14px;
        color: #000;
        line-height: 18px;
        position: relative;
        padding-left: 15px;
    }

        .advantages .p-item:last-child {
            margin-bottom: 0;
        }

        .advantages .p-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 5px;
            height: 5px;
            background: #000;
            border-radius: 50%;
        }

.contact-container {
    position: relative;
    width: 80%;
    max-width: 1100px;
    height: 500px;
    background: linear-gradient(to right, rgba(236, 247, 239), rgba(242, 239, 246));
    border: 2px solid #fff;
    border-radius: 15px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
}

    .contact-container .left-section1 {
        width: 50%;
        height: 100%;
        position: relative;
        margin: 0;
    }

    .contact-container .contact-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px 0 0 10px;
        filter: brightness(60%);
    }

    .contact-container .contact-title {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #fff !important;
    }

    .contact-container .contact-subtitle {
        position: absolute;
        margin-top: 25%;
        top: 100px;
        left: 20px;
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 8px;
        color: #fff;
        line-height: 1.2;
    }

        .contact-container .contact-subtitle .highlight {
            color: #b1b1b1;
            font-weight: 700;
        }

    .contact-container .right-section1 {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 20px;
        background: linear-gradient(to right, rgb(189, 223, 198), rgb(150, 126, 182));
        border-radius: 0 10px 10px 0;
    }

    .contact-container .feedback-title {
        font-size: 30px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
    }

    .contact-container .feedback-text {
        font-size: 18px;
        color: #fff;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .contact-container .feedback-form {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

        .contact-container .feedback-form input,
        .contact-container .feedback-form textarea {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border: 1px solid rgb(51, 176, 100);
            border-radius: 5px;
            margin-bottom: 15px;
            box-sizing: border-box;
            box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(255, 255, 255, 0.2);
            background: #fff;
        }

            .contact-container .feedback-form input::placeholder,
            .contact-container .feedback-form textarea::placeholder {
                color: #999;
                font-size: 14px;
            }

        .contact-container .feedback-form .input-row {
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }

        .contact-container .feedback-form .input-group {
            width: 48%;
        }

        .contact-container .feedback-form textarea {
            resize: vertical;
        }

        .contact-container .feedback-form button {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            color: #fff;
            background: linear-gradient(to right, rgb(51, 176, 100), rgb(65, 26, 117));
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

            .contact-container .feedback-form button:hover {
                transform: translateY(-2px);
            }

.partners {
    width: 80%;
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 20px;
}

    .partners h1 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        background: linear-gradient(to right, rgb(51, 176, 100) 0%, rgb(65, 26, 117) 50%, rgb(51, 176, 100) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
        display: inline-block;
    }

    .partners .partner-logos {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        flex-wrap: nowrap;
    }

        .partners .partner-logos img {
            width: 200px;
            height: 100px;
            object-fit: contain;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

            .partners .partner-logos img:hover {
                transform: scale(1.1);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            }

@media (max-width: 1024px) and (max-height: 600px) {
    .about-container {
        width: 90%;
        max-width: 100%;
        height: auto;
        flex-direction: row;
        padding: 15px;
        margin-top: 150px;
    }

    .left-section {
        flex: 0 0 30%;
        padding-right: 15px;
    }

        .left-section h1 {
            font-size: 32px;
        }

    .right-section {
        flex: 0 0 70%;
        align-items: flex-start;
        text-align: left;
    }

        .right-section p {
            font-size: 14px;
            margin-right: 20px;
        }

        .right-section .highlight {
            font-size: 15px;
        }

    .experience-wrapper {
        padding: 10px;
    }

    .experience {
        flex-direction: row;
        gap: 15px;
        padding: 10px;
        justify-content: space-around;
    }

        .experience div {
            flex: none;
            min-width: 80px;
        }

            .experience div:not(:last-child)::after {
                right: -8px;
                height: 50px;
            }

            .experience div span {
                font-size: 30px;
            }

            .experience div h1 {
                font-size: 12px;
            }

    .about-subcontainer {
        width: 90%;
        max-width: 100%;
        padding: 15px;
    }

        .about-subcontainer .items-wrapper {
            flex-direction: row;
            gap: 10px;
        }

        .about-subcontainer .item {
            width: 33%;
            margin-top: 10px;
            margin-bottom: 10px;
            padding: 10px;
        }

        .about-subcontainer .h1-item {
            font-size: 20px;
        }

        .about-subcontainer .p-item {
            font-size: 12px;
        }

        .about-subcontainer .icon {
            width: 25px;
            height: 25px;
        }

    .recommend-container {
        width: 90%;
        max-width: 100%;
        height: auto;
        padding: 15px;
    }

        .recommend-container .recommend-title {
            font-size: 28px;
        }

        .recommend-container h2.recommend-title {
            font-size: 28px;
        }

        .recommend-container .items-wrapper {
            flex-direction: row;
            gap: 10px;
        }

        .recommend-container .item {
            width: 33%;
            height: 200px;
            margin-top: 10px;
            padding: 10px;
        }

        .recommend-container .h1-item {
            font-size: 16px;
        }

        .recommend-container .p-item {
            font-size: 12px;
        }

    .sertificates {
        width: 90%;
        max-width: 100%;
        padding: 15px;
    }

        .sertificates h1 {
            font-size: 24px;
        }

        .sertificates .partner-logos {
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

            .sertificates .partner-logos img {
                width: 200px;
                height: 120px;
            }

    .advantages {
        width: 90%;
        max-width: 100%;
        height: auto;
        padding: 15px;
        margin: 40px auto;
    }

        .advantages .recommend-title {
            font-size: 28px;
        }

        .advantages h1.recommend-title {
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .advantages .items-wrapper {
            flex-direction: row;
            gap: 10px;
        }

        .advantages .item {
            width: 33%;
            height: 200px;
            margin-top: 10px;
            padding: 10px;
        }

        .advantages .h1-item {
            font-size: 16px;
            margin-top: 10px;
        }

        .advantages .p-item {
            font-size: 12px;
            line-height: 16px;
            padding-left: 10px;
        }

    .contact-container {
        width: 90%;
        max-width: 100%;
        height: auto;
        flex-direction: row;
    }

        .contact-container .left-section1 {
            width: 50%;
            height: 300px;
        }

        .contact-container .contact-image {
            border-radius: 10px 0 0 10px;
        }

        .contact-container .contact-title {
            font-size: 24px;
            top: 15px;
            left: 15px;
            right: 15px;
        }

        .contact-container .contact-subtitle {
            font-size: 18px;
            top: 60px;
            left: 15px;
            right: 15px;
            line-height: 1.4;
            margin-top: 0;
        }

        .contact-container .right-section1 {
            width: 50%;
            height: auto;
            border-radius: 0 10px 10px 0;
        }

        .contact-container .feedback-title {
            font-size: 24px;
        }

        .contact-container .feedback-text {
            font-size: 16px;
        }

        .contact-container .feedback-form .input-row {
            flex-direction: row;
            gap: 10px;
        }

        .contact-container .feedback-form .input-group {
            width: 48%;
        }

    .partners {
        width: 90%;
        max-width: 100%;
        padding: 15px;
    }

        .partners h1 {
            font-size: 24px;
        }

        .partners .partner-logos {
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

            .partners .partner-logos img {
                width: 150px;
                height: 75px;
            }
}

@media (max-width: 768px) {
    .about-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        flex-direction: column;
        padding: 15px;
        margin-top: 150px;
    }

    .left-section {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 20px;
        margin-top: 30px;
    }

        .left-section h1 {
            font-size: 28px;
        }

    .right-section {
        flex: 0 0 100%;
        align-items: center;
        text-align: center;
    }

        .right-section p {
            font-size: 15px;
            margin-right: 0;
        }

        .right-section .highlight {
            font-size: 16px;
        }

    .experience-wrapper {
        padding: 10px;
    }

    .experience {
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

        .experience div {
            flex: none;
        }

            .experience div:not(:last-child)::after {
                display: none;
            }

            .experience div span {
                font-size: 35px;
            }

            .experience div h1 {
                font-size: 14px;
            }

    .about-subcontainer {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

        .about-subcontainer .items-wrapper {
            flex-direction: column;
            gap: 15px;
        }

        .about-subcontainer .item {
            width: 100%;
            margin-top: 15px;
            margin-bottom: 15px;
            padding: 15px;
        }

        .about-subcontainer .h1-item {
            font-size: 22px;
        }

        .about-subcontainer .p-item {
            font-size: 14px;
        }

        .about-subcontainer .icon {
            width: 30px;
            height: 30px;
        }

    .recommend-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 20px;
    }

        .recommend-container .recommend-title {
            font-size: 28px;
        }

        .recommend-container h2.recommend-title {
            font-size: 28px;
        }

        .recommend-container .items-wrapper {
            flex-direction: column;
        }

        .recommend-container .item {
            width: 100%;
            height: 200px;
            margin-top: 15px;
        }

        .recommend-container .h1-item {
            font-size: 18px;
        }

        .recommend-container .p-item {
            font-size: 14px;
        }

    .sertificates {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

        .sertificates h1 {
            font-size: 24px;
        }

        .sertificates .partner-logos {
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

            .sertificates .partner-logos img {
                width: 200px;
                height: 120px;
            }

    .advantages {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 15px;
        margin: 40px auto;
    }

        .advantages .recommend-title {
            font-size: 28px;
        }

        .advantages h1.recommend-title {
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .advantages .items-wrapper {
            flex-direction: column;
        }

        .advantages .item {
            width: 100%;
            height: 200px;
            margin-top: 10px;
            padding: 15px;
        }

        .advantages .h1-item {
            font-size: 18px;
            margin-top: 10px;
        }

        .advantages .p-item {
            font-size: 13px;
            line-height: 16px;
            padding-left: 10px;
        }

    .contact-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        flex-direction: column;
    }

        .contact-container .left-section1 {
            width: 100%;
            height: 300px;
        }

        .contact-container .contact-image {
            border-radius: 10px 10px 0 0;
        }

        .contact-container .contact-title {
            font-size: 24px;
            top: 15px;
            left: 15px;
            right: 15px;
        }

        .contact-container .contact-subtitle {
            font-size: 18px;
            top: 60px;
            left: 15px;
            right: 15px;
            line-height: 1.4;
            margin-top: 0;
        }

        .contact-container .right-section1 {
            width: 100%;
            height: auto;
            border-radius: 0 0 10px 10px;
        }

        .contact-container .feedback-title {
            font-size: 24px;
        }

        .contact-container .feedback-text {
            font-size: 16px;
        }

        .contact-container .feedback-form .input-row {
            flex-direction: column;
            gap: 10px;
        }

        .contact-container .feedback-form .input-group {
            width: 100%;
        }

    .partners {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

        .partners h1 {
            font-size: 24px;
        }

        .partners .partner-logos {
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

            .partners .partner-logos img {
                width: 150px;
                height: 75px;
            }
}

@media (max-width: 480px) {
    .about-container {
        padding: 10px;
        margin-top: 120px;
    }

    .left-section h1 {
        font-size: 24px;
    }

    .right-section p {
        font-size: 14px;
    }

    .right-section .highlight {
        font-size: 15px;
    }

    .experience div span {
        font-size: 30px;
    }

    .experience div h1 {
        font-size: 12px;
    }

    .about-subcontainer {
        padding: 10px;
    }

        .about-subcontainer .item {
            padding: 10px;
        }

        .about-subcontainer .h1-item {
            font-size: 20px;
        }

        .about-subcontainer .p-item {
            font-size: 13px;
        }

        .about-subcontainer .icon {
            width: 25px;
            height: 25px;
        }

    .recommend-container {
        padding: 10px;
    }

        .recommend-container .recommend-title {
            font-size: 24px;
        }

        .recommend-container h2.recommend-title {
            font-size: 24px;
        }

        .recommend-container .item {
            height: 180px;
        }

        .recommend-container .h1-item {
            font-size: 16px;
        }

        .recommend-container .p-item {
            font-size: 12px;
        }

    .sertificates {
        padding: 10px;
    }

        .sertificates h1 {
            font-size: 20px;
        }

        .sertificates .partner-logos img {
            width: 150px;
            height: 90px;
        }

    .advantages {
        padding: 10px;
        margin: 30px auto;
    }

        .advantages .recommend-title {
            font-size: 24px;
        }

        .advantages h1.recommend-title {
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .advantages .item {
            height: 180px;
            padding: 10px;
        }

        .advantages .h1-item {
            font-size: 16px;
            margin-top: 5px;
        }

        .advantages .p-item {
            font-size: 12px;
            line-height: 14px;
        }

    .contact-container .left-section1 {
        height: 200px;
    }

    .contact-container .contact-title {
        font-size: 20px;
    }

    .contact-container .contact-subtitle {
        font-size: 16px;
        top: 50px;
    }

    .contact-container .feedback-title {
        font-size: 20px;
    }

    .contact-container .feedback-text {
        font-size: 14px;
    }

    .partners {
        padding: 10px;
    }

        .partners h1 {
            font-size: 20px;
        }

        .partners .partner-logos img {
            width: 120px;
            height: 60px;
        }
}
