.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;

    .faq-header {
        display: flex;
        align-items: center;
        cursor: pointer;

    }
    .faq-icon {
        width: 30px;
        height: 30px;
    }
    .faq-item {
        padding: 30px 35px;
        border-radius: 15px;
        background: #FFF;
        box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.1);
    }

    .faq-content {
        display: none;
        width: 95%;
        padding-top: 10px;
        font-size: 16px;
        background: white;
    }
    .faq-arrow{
        right: 35px;
        position: absolute;
    }
    .faq-title {
        width: 95%;
    }
    .faq-arrow {
        width: 40px;
        height: 40px;
    }

    .faq-item.line {
        padding: 0 0 15px 15px;
        border-left: 3px solid #BDBDBD;
        background: none;
        box-shadow: none;
        border-radius: 0;
        
        .faq-title {
            width: 100%;
        }
        
        .faq-content {
            width: 100%;
        }
        
        &.active {
            border-left: 3px solid #007AFF;
        }
        
        .faq-arrow {
            display: none !important;
        }
    }
    .faq-item.line.

    .faq-item.line 
}

@media (max-width: 768px) {
    .faq-container {
        
        .faq-title {
            width: 80%;
        }
        
        .faq-content {
            width: 100%;
        }
        .faq-item.line {
            
            .faq-title {
                width: 100%;
            }
            .faq-content {
                width: 100%;
            }
        }
    }
}

