    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html{
        overflow-x: hidden;
        overflow-y: auto;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        color: #1d1d1f;
        line-height: 1.6;
        background-color: #fbfbfd;
        overflow-x: hidden;
        overflow-y: auto;
        
    }


    .skip-link {
        display: none !important;
    }

    /* Header */
    header#masthead{
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: saturate(180%) blur(20px);
        padding: 16px 5%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 1000;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .logo img {
        height: 50px;
        width: auto;
    }
    .container-logo{
        display: flex;
    }
    .navigation {
        display: flex;
        list-style: none;
        gap: 32px;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    .navigation a {
        text-decoration: none;
        color: #1d1d1f;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .navigation a img {
        transition: filter 0.3s ease; /* Плавный переход для иконки */
    }

    .navigation a:hover {
        color: #0066cc;
    }
    /* Подсветка иконки при наведении */
    .navigation a:hover img {
        filter: brightness(0) saturate(100%) invert(33%) sepia(98%) saturate(2394%) hue-rotate(201deg) brightness(98%) contrast(101%);
        /* Это CSS-фильтр который превращает любую иконку в синий цвет #0066cc */
    }



    /* Скрыть label визуально, но оставить для screen readers */
    .screen-reader-text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }



    /* Main */
    main {
        max-width: 100%;
        min-height: 80vh;
        margin: 0 auto;
    }

    /* Banner */
    .banner {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        height: 600px;
        background-color: #f5f5f7;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .banner-image {
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    .banner-content {
        position: relative;
        z-index: 2;
        margin-left: 52%;
        padding: 60px 5%;
        max-width: 600px;
    }

    .banner-content h1 {
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1d1d1f;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .banner-content p {
        font-size: 21px;
        color: #6e6e73;
        margin-bottom: 32px;
        line-height: 1.5;
    }

    .banner-button {
        display: inline-flex;
        text-align: center;
        background-color: #0066cc;
        color: white !important;
        border: none;
        text-decoration: none !important;
        padding: 16px 48px;
        font-size: 17px;
        font-weight: 500;
        border-radius: 980px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .banner-button:hover {
        background-color: #0055b3;
        transform: scale(1.05);
    }

    /* Section 1 - Categories */
    .section-1 {
        padding: 80px 5% 100px;
    }

    .section-1 h2 {
        font-size: 48px;
        font-weight: 600;
        margin-bottom: 60px;
        text-align: center;
        letter-spacing: -0.5px;
    }

    .categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
    }

    .categories > a {
        background: white;
        border-radius: 18px;
        padding: 48px 32px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .categories > a:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    .categories img {
        width: 100%;
        max-width: 280px;
        height: 350px;
        object-fit: cover;
        margin-bottom: 24px;
        background-color: #f5f5f7;
        border-radius: 12px;
    }

    .categories h3 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #1d1d1f;
    }

    .categories p {
        font-size: 16px;
        color: #6e6e73;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .categories > a h3:last-child {
        font-size: 17px;
        color: #0066cc;
        font-weight: 400;
        margin-top: 16px;
        margin-bottom: 0;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .categories > a h3:last-child::after {
        content: '→';
        font-size: 17px;
        transition: transform 0.3s ease;
    }

    .categories > a:hover h3:last-child::after {
        transform: translateX(4px);
    }

    /* Section 2 - Info Links */
    .section-2 {
        background-color: #f5f5f7;
        padding: 32px 15%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 64px;
        flex-wrap: wrap;
    }

    .section-2 a{
        text-decoration: none;
    }

    .section-2 p {
        margin: 0;
        align-items: center;
        font-size: 14px;
        color: #1d1d1f;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .section-2 p:hover {
        color: #0066cc;
    }

    /* Section 3 - Advantages */
    .section-3 {
        padding: 100px 5%;
        background-color: white;
    }

    .dostoinstva {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 64px;
        margin: 0;
    }

    .dostoinstva li {
        text-align: center;
    }

    .d-img-container {
        width: 80px;
        height: 80px;
        margin: 0 auto 24px;
        background-color: #f5f5f7;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .d-img-container img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .dostoinstva h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 16px;
        color: #1d1d1f;
    }

    .dostoinstva p {
        font-size: 16px;
        color: #6e6e73;
        line-height: 1.6;
    }

    /* Section 4 - Hero/Cover */
    .section-4 {
        position: relative;
        width: 100%;
        height: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        overflow: hidden;
    }

    .img-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .img-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
    }

    .cover-h {
        position: relative;
        z-index: 2;
        font-style: italic;
        font-size: 56px;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: -1px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .cover-text {
        position: relative;
        z-index: 2;
        font-size: 21px;
        font-style: italic;
        margin-bottom: 40px;
        max-width: 600px;
        padding: 0 20px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .cover-button {
        position: relative;
        z-index: 2;
        background-color: white;
        color: #1d1d1f !important;
        text-decoration: none !important;
        border: none;
        padding: 16px 48px;
        font-size: 17px;
        font-weight: 500;
        border-radius: 980px;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .cover-button:hover {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    }

    /* Footer */
    footer {
        background-color: rgb(29, 29, 31);
        padding: 60px 5% 0;
        display: flex;
        justify-content: space-between;
        gap: 48px;
        flex-wrap: wrap;
        margin-top: auto;
    }

    .footer-nav {
        list-style: none;
        margin: 0;
    }

    .grouped{
        width: 70%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;

    }

    .li-header p {
    font-size: 12px;
    font-weight: 600;
    color: #86868b;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Footer collapsible */

    .footer-nav li {
        margin-bottom: 12px;
        text-align: left;
    }

    .footer-nav a {
        text-decoration: none;
        color: #f5f5f7;
        font-size: 14px;
        transition: color 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover {
        color: #0066cc;
    }

    .footer-bottom {    
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        gap: 12px;
        text-align: center;
        padding: 20px;
        margin-top: 0;
        border-top: 1px solid #424245;
    }

    .footer-copyright {
        color: #86868b;
    }

    .footer-credits {
        color: #86868b;
    }

    .footer-credits a {
        color: #0066cc;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-credits a:hover {
        color: #ffffff;
    }

    .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
        background: none !important;
    }

    /* Footer collapsible */
    .footer-toggle {
        display: none;
    }

    .arrow {
        display: none;
    }


    /* Responsive */
    @media (min-width: 1921px) {
        header#masthead {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{
            width: 100% !important;
        }
        header#masthead {
            padding: 12px 20px;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .logo {
            display: flex;
        }
        .widget {
            margin: 0;
        }
        .navigation {
            font-size: 12px;
            gap: 0.5rem;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: center;
            width: 100%;
            margin-top: 0.1vh;
        }
        ul, ol{
            margin: 0;
        }

        .search-form,
        .yith-s,
        .yith-ajaxsearchform-container {
            max-width: 100%;
        }

        .search-item {
            width: 60%;
        }

        .banner {
            height: 500px;
        }

        .banner-image {
            width: 33.333%;
        }

        .banner-content {
            margin-left: 35%;
            padding: 40px 20px;
            width: 65%;
            max-width: 100%;
        }

        .banner-content h1 {
            font-size: 32px;
        }

        .banner-content p {
            font-size: 16px;
        }

        .section-1 {
            padding: 40px 20px 60px;
        }

        .section-1 h2 {
            font-size: 32px;
        }

        .categories {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .categories > div {
            padding: 32px 20px;
        }

        .section-2 {
            padding: 24px 20px;
            gap: 32px;
            flex-direction: column;
        }

        .section-3 {
            padding: 60px 20px;
        }

        .dostoinstva {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .dostoinstva > li {
            text-align: center;
        }

        .section-4 {
            padding: 80px 20px;
        }

        .cover-h {
            font-size: 36px;
        }

        .cover-text {
            font-size: 17px;
            padding: 0 20px;
        }

        footer {
            flex-direction: column;
            gap: 0;
            padding: 20px;
        }

    .grouped{
        flex-direction: column;
        width: 100%;
        padding: 40px 20px 0;
        gap: 32px;
        justify-content: center;
        text-align: center;
    }
    
    .footer-nav {
        min-width: auto;
        border-bottom: 1px solid #424245;
        padding-bottom: 16px;
    }
    
    .footer-nav:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px;
        margin-top: 20px;
    }
    
    .li-header {
        cursor: pointer;
        margin-bottom: 0;
    }
    
    .li-header p {
        margin-bottom: 0;
    }
    
    .arrow {
        display: inline-block;
        transition: transform 0.3s ease;
        font-size: 12px;
        font-weight: 300;
    }
    
    .footer-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        list-style: none;
        padding-left: 0;
    }
    
    .footer-toggle:checked ~ .footer-content {
        max-height: 500px;
        margin-top: 16px;
    }
    
    .footer-toggle:checked ~ .li-header .arrow {
        transform: rotate(180deg);
    }

    }
    