#solutions_pdf_explain_2 {
}
#solutions_pdf_explain_2_container {
}
#solutions_pdf_explain_2_content {
    flex-direction: column;
}
.pdf-aq-section {
    /*padding: 3rem 2rem;*/
    margin: 0 auto;
}
.pdf-aq-header {
    margin-bottom: 2.5rem;
}
.pdf-aq-list {
    display: flex;
    flex-direction: column;
}
.pdf-aq-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 0.5px solid #e8e8e8;
    align-items: start;
}
.pdf-aq-item:first-child {
    border-top: 0.5px solid #e8e8e8;
}
.pdf-aq-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pdf-aq-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #185FA5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pdf-aq-icon svg {
    width: 18px;
    height: 18px;
}
.pdf-aq-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}
.pdf-aq-item p {
    color: var(--our-grey-color);
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 600px) {
    .pdf-aq-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}