.faq-container {
    margin: 60px 0;
    display: flex;
    gap: 0 128px;
}

.faq-container-left {
    
}

.faq-nav {
    width: 316px;
    padding: 32px;
    background-color: var(--gray-light);
}

.faq-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;    
}

.faq-nav ul li {
    margin: 16px 0;
}

.faq-nav ul li.title {
    font-size: 50px;
    font-family: 'DM Sans';
    letter-spacing: -1.5px;
    font-weight: 500;
    margin-bottom: 32px;
}

.faq-nav ul li a {
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
}

.faq-nav ul li.active a {
    color: var(--blue);
    font-size: 20px;
}

.faq-title {
    font-family: 'DM Sans';
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -1.2px; 
    margin-bottom: 30px;
}

.faq-item {
    padding: 32px 0;
    border-bottom: 1px solid #E8E8E8;
}

.faq-item-question {
    font-family: DM Sans;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
    letter-spacing: -0.6px;
    background: url('/bundles/certcommon/images/plus.svg') right 0 no-repeat;
    cursor: pointer;
    padding-right: 26px;
}  

.faq-item.open .faq-item-question {
    background: url('/bundles/certcommon/images/cross-red.svg') right 0 no-repeat;
}

.faq-item-question:hover {
    color: var(--blue);
}

.faq-item-answer {
    overflow: hidden;
    transition: all 0.3s ease;
}   

.faq-item-answer p {
    margin: 16px 0 0;
    color: rgba(26, 25, 30, 0.50); 
    font-weight: 500;
    line-height: 160%; /* 25.6px */ 
}

@media screen and (max-width: 1140px) {  
    .faq-container {
        gap: 0 50px;
    }
}

@media screen and (max-width: 1023px) {  
    .faq-container {
        gap: 0;
    }
    .faq-nav {
        display: none;
    }  
}

@media screen and (max-width: 820px) {  
    .faq-title {
        font-size: 28px;
    }
}