#faq {
    display: flex;
    flex-direction: column;
    gap: 20px;

    @media screen and (min-width: 876px) {
        gap: 2rem;
    }

    &>div {
        position: relative;

        @media screen and (min-width: 876px) {
            padding: 60px;
        }

        .faq-title {
            display: flex;
            gap: 18px;
            align-items: center;

            .number {
                font-family: "Neue Kaine";
                font-size: 24px;
                font-weight: 800;
                line-height: normal;
                background: linear-gradient(180deg, #B872E6 0%, #FF4AD1 100%);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;

                @media screen and (min-width: 876px) {
                    font-size: 48px;
                }
            }
        }

        .box.white {
            position: relative;
            z-index: 5;
            margin: 0 0 0 20px;
            padding: 1rem;

            @media screen and (min-width: 876px) {
                margin: 0 0 0 130px;
                padding: 24px;
            }

            @media screen and (min-width: 1200px) {
                border-radius: 32px;
            }

            p {
                color: #5A5365;
                font-size: 16px;
                line-height: 24px;
            }

            ul {
                display: flex;
                flex-direction: column;
                gap: 12px;

                li {
                    display: flex;
                    align-items: center;
                    gap: 8px;

                    color: #0A011A;
                    font-size: 16px;
                    line-height: normal;
                    font-weight: 400;

                    &:before {
                        content: "";
                        display: block;
                        flex: 0 0 auto;
                        width: 16px;
                        height: 16px;
                        background: url("../images/check-green-square-m9tlVFY.svg") no-repeat;
                    }
                }
            }

            #think-of-it-this-way {
                display: flex;
                gap: 6px;
                align-items: start;

                @media screen and (min-width: 876px) {
                    gap: 20px;
                }

                #think {
                    width: 20px;
                    height: 20px;

                    @media screen and (min-width: 876px) {
                        width: 40px;
                        height: 40px;
                    }
                }
            }

            &#what-does-a-vpn-do {
                gap: 12px;

                .separator {
                    width: 1px;
                    background: #E4E1EB;
                    flex: 0 0 1px;
                    align-self: stretch;
                }

                @media screen and (min-width: 876px) {
                    display: grid;
                    grid-template-columns: 1fr 1px 1fr;
                    gap: 24px;
                }
            }
        }

        .icon-list {
            display: flex;
            gap: 12px;
            flex-direction: column;
            align-items: start;

            &>div {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 12px;
            }
        }

        #what-does-a-vpn-hide {
            display: flex;
            justify-content: stretch;
            align-items: stretch;
            flex-direction: column;
            gap: 12px;

            @media screen and (min-width: 876px) {
                display: grid;
                grid-template-columns: 2fr 3fr;
                gap: 16px;
                margin-left: 130px;

                .box.white {
                    margin: 0;
                }
            }
        }

        .pl-faq {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding-left: 20px;

            @media screen and (min-width: 876px) {
                padding-left: 130px;
            }
        }

        #how-does-a-vpn-work {
            gap: 20px;
            justify-content: start;

            .badge {
                position: relative;
                z-index: 4;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50px;
                background: #F8F5FF;
                color: #5A5365;
                font-size: 12px;
                font-weight: 500;
                line-height: normal;
            }
        }

        picture {
            position: absolute;
            left: 0;
            bottom: 0;
            z-index: 1;

            img {
                width: auto;
                height: auto;
            }
        }

        #gradient-shield {
            bottom: 5px;

            @media screen and (min-width: 876px) {
                left: 60px;
                bottom: 0;
            }
        }

        #glass-padlock-secure-vpn {
            @media screen and (min-width: 876px) {
                left: -20px;
                bottom: 0;
            }
        }

        #worldwide-vpn-unlock {
            @media screen and (min-width: 876px) {
                left: 40px;
                bottom: 0;
            }
        }

        #secure-vpn-purple-shield {
            @media screen and (min-width: 876px) {
                left: 40px;
                bottom: 0;
            }
        }

        #dashed-line {
            position: absolute;
            left: 61px;
            top: 77px;
            bottom: 0;

            width: 1px;
            height: auto;
            z-index: 3;
        }

        #encryption-list {
            margin: 0;

            ul {
                li {
                    display: block;
                }

                li:before {
                    display: none;
                }
            }
        }
    }
}