    .help-center {
        width: 100%;
        display: flex;
        flex-direction: column;
        background-color: red;
    }

    .help-center-custom-post {
        width: 100%;
        max-width: 1280px;
        margin: auto;
    }

    .help-center-search {
        display: flex;
        flex-direction: row;
        padding: 10px 12px;
        border: solid 2px var(--primary-color);
        border-radius: 0;
        margin-top: 8px;
        gap: 0;
        max-height: 82px;
        margin-bottom: 20px;
        align-items: center;
        justify-content: start;
    }

    .help-center-search svg {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .help-center-search .help-center-search__input {
        width: 100%;
        border: none;
        outline: none;
        color: var(--primary-color);
        font-size: 32px;
        line-height: 150%;
    }

    .help-center-search .help-center-search__input::placeholder {
        font-size: 32px;
        color: var(--primary-color)
    }

    .help-center-categorys-and-posts {
        padding-top: 50px;
        width: 100%;
        max-width: 945px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 65px 60px;
        padding-bottom: 0;
    }

    .help-center__category .help-center__category-title {
        font-size: 15px;
        line-height: 150%;
        color: #000000;
        margin: 0;
        margin-bottom: 14px;
        font-weight: var(--fw-semibold) !important;
    }

    .help-center__category-list {
        display: flex;
        flex-direction: column;
        padding: 0;
        list-style: none;
        gap: 12px;
    }

    .help-center__category-item a {
        font-size: 15px;
        line-height: 150%;
        color: var(--primary-color);
    }

    .help-center-custom-post-title h1 {
        margin: 0;
        margin-top: 35px;
        font-family: "Roboto", Sans-serif;
        font-size: 66px;
        font-weight: 600;
        color: var(--e-global-color-secondary);
        padding: 20px 0;
        margin-bottom: 33px;
    }

    .help-center__category-item {
        display: flex;
    }

    @media (max-width:768px) {
        .help-center-categorys-and-posts {
            padding-top: 30px;
            width: 100%;
            max-width: 945px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            padding-bottom: 0;
        }

        .help-center__category-list {
            gap: 8px;
        }

        .help-center-search svg {
            width: 30px;
            height: 30px;
            min-width: 30px;
        }

        .help-center-search {
            gap: 0;
            max-height: 60px;
            margin-bottom: 20px;
        }

        .help-center-search .help-center-search__input {
            font-size: 19px;
        }

        .help-center-search .help-center-search__input::placeholder {
            font-size: 19px;
        }

        .help-center-custom-post-title h1 {
            margin: 0;
            margin-top: 0;
            font-size: 35px;
            padding: 20px 0;
            margin-bottom: 0;
        }
    }