.headline h1 span.big {
    font-family: "Oswald";
    font-size: 50px;
    letter-spacing: 2px;
    line-height: 0.95em;
    text-align: center;
    margin: 0;
    color: #fff;
}

.headline h1 span.big span {
    display: inline-block;
    font-family: "Oswald";
    font-size: 0.85em;
    margin: 0 0px 5px 5px;
}

@media (max-width: 767.98px) {
    .headline h1 span.big {
        font-size: 36px;
        margin-top: 0;
    }
}

.faq__copy {
    font-size: 40px;
    line-height: calc(70 / 45);
    text-align: center;
    font-weight: 600;
    margin-top: 40px;
}

.faq__text {
    text-align: center;
    margin-top: 50px;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .faq__copy {
        font-size: 28px;
        margin-top: 40px;
    }

    .faq__text {
        margin-top: 30px;
        text-align: left;
    }
}

.faq-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #fff;
    border: 1px solid #fff;
    margin: 60px 0 0;
    padding: 0;
    list-style: none;
    /* margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw); */
}

.faq-nav.is-fixed {
    grid-template-columns: repeat(4, 1fr);
}

.faq-nav li {
    background: #efeeee;
    margin: 0;
    height: auto;
}

.faq-nav li a {
    display: flex;
    font-size: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 70px;
    padding: 10px 30px 10px 20px;
    text-decoration: none;
    color: var(--vk-color-text-body);
    text-align: center;
    line-height: 1.4;
    transition: background-color 0.3s;
    position: relative;
    box-sizing: border-box;
}

.faq-nav li a:hover {
    background-color: #353450;
    opacity: 1;
    color: #fff;
}

.faq-nav li a .small {
    font-size: 13px;
    display: block;
    margin-top: 5px;
}

.faq-nav li a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--vk-color-text-body);
    border-bottom: 2px solid var(--vk-color-text-body);
    margin-top: -2px;
}

.faq-nav li a:hover::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

@media (max-width: 767.98px) {
    .faq-nav {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .faq-nav li a {
        min-height: 60px;
        padding: 0px;
        font-size: 12px;

    }

    .faq-nav li a .small {
        font-size: 11px;
    }

    .faq-nav li a::after {
        right: 10px;
        width: 6px;
        height: 6px;
    }
}

.faq-section {
    margin-top: 50px;
}

.faq-section__title {
    font-size: 25px;
    line-height: 1.4;
    padding-top: 25px;
    margin-bottom: 0;
}

.faq-section__title .small {
    font-size: 0.7em;
    font-weight: 400;
    margin-left: 10px;
}

.faq-list {
    margin-top: 15px;
}

.faq-item {
    margin-bottom: 0;
    background: #e6ebee;
    border-top: 1px solid #ababab;
}

.faq-item:last-child {
    border-bottom: 1px solid #ababab;
}

.faq-item__head {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
}

.faq-item__head:hover {
    background-color: #dce3e8;
}

.faq-item__number {
    width: 45px;
    height: 45px;
    background-color: #3e3a53;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
    font-family: "Oswald", sans-serif;
}

.faq-item__q {
    font-size: 18px;
    font-weight: 700;
    color: #3e3a53;
    line-height: 1.4;
    padding-right: 30px;
}

.faq-item__toggle {
    width: 20px;
    height: 2px;
    background-color: #333;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item__toggle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    transform: rotate(90deg);
    transition: transform 0.3s;
}

.faq-item__head.is-active .faq-item__toggle::before {
    transform: rotate(0deg);
}

.faq-item__body {
    display: none;
    padding: 20px 30px 15px 80px;
    border-top: 1px solid #fff;
    background: #fff;
}

.faq-item__a {
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-item__link {
    display: inline-block;
    color: #e46c10;
    text-decoration: underline;
    font-size: 14px;
}

.faq-item__link:hover {
    text-decoration: none;
}

@media (max-width:991.98px) {
    .faq-nav {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .faq-nav li a {
        font-size: 14px;
        padding: 10px 0px 10px 0px;
    }

    .faq-nav li a::after {
        right: 15px;
        /* top: 20px;
        transform: translateY(0) rotate(45deg); */
    }

    .faq-nav li a .small {
        font-size: 10px;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        margin-top: 60px;
    }

    .faq-section__title {
        font-size: 20px;
        padding-left: 10px;
        border-left-width: 4px;
    }

    .faq-section__title .small {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    .faq-item__head {
        padding: 10px 15px;
    }

    .faq-item__number {
        width: 34px;
        height: 34px;
        font-size: 14px;
        margin-right: 15px;
    }

    .faq-item__q {
        font-size: 15px;
        padding-right: 20px;
    }

    .faq-item__toggle {
        right: 15px;
        width: 14px;
    }

    .faq-item__body {
        padding: 15px 20px 30px 20px;
    }

    .faq-item__a {
        font-size: 14px;
    }
}

.faq-nav.is-fixed {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 1000;
    margin-top: 0;
    /* Override existing margin */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.faq-nav.is-fixed li a {
    padding: 0 30px 0 20px;
    min-height: 60px;
}

html:has(.post-name-faq) {
    scroll-padding-top: 233px;
}

@media (max-width:991.98px) {
    html:has(.post-name-faq) {
        scroll-padding-top: 60px;
    }
}

.site-footer {
    margin-top: 8rem;
}