#faq {
    .context {
        display: grid;
        gap: 30px;
    }

    .row {
        display: grid;
        grid-template-columns: 1.5fr 2fr;

        @media only screen and (max-width: 980px) {
            grid-template-columns: 1fr;
        }       
    }

    .banner {
        background-size: cover;
        background-position: center;
        padding-top: calc( 50% - 90px );
        padding-bottom: calc( 50% - 90px );

        padding-inline: 50px;

        display: grid;
        align-items: center;
        justify-content: center;
        gap: 30px;
        position: relative;

        @media only screen and (max-width: 980px) {
            padding-top: 25%;
            padding-bottom: 25%;
        }   

        position: sticky;
        top: 90px;

        * {
            position: relative;
            z-index: 1;
        }

        h2 {
            color: #fff;
        }

        p {
            font-size: 20px;
        }

        .overlay {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.5);
            background: linear-gradient(45deg, black, transparent);
            z-index: 0;

            background: linear-gradient(45deg, black 30%, transparent);
        }
    }

    .content {
        padding: 50px;
    }

    .image {
        padding-top: 10%;
        background-size: cover;
        background-position: center;
    }

    .categories {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(0,0,0,0.1);

        @media only screen and (max-width: 980px) {
            display: none;
        } 

        span {
            padding: 10px 20px;
            border: none;
            font-size: 1.1rem;
            font-weight: 500;
            color: #333;
            cursor: pointer;
            transition: all 0.3s;

            &.active {
                color: #fff;
                background: var(--site-primary);
            }
        }
    }

    .category {
        .name {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: #1a1a1a;
            position: relative;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
    }

    .list {
        display: grid;
        gap: 10px;

        .item {
            border-radius: 8px;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

            .wrap {
                display: grid;
                grid-template-columns: 1fr auto;
            }

            .question {
                padding: 1.5rem;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                font-weight: 600;
                color: #1a1a1a;
                position: relative;
                transition: background-color 0.3s;
            }

            .answer {
                display: none;
                padding: 0px 30px 30px 30px;
                transition: max-height 0.3s ease, padding 0.3s ease;
            }

            &.open .answer {
                display: block;
            }
        }
    }
}