#solutions_audit_explain_3 {
}
#solutions_audit_explain_3_container {
}
#solutions_audit_explain_3_content {
    flex-direction: column;
}
#solutions_audit_explain_1_block_3 {
    margin: 30px 0;
}
#solutions_audit_explain_1_block_3 ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
}
#solutions_audit_explain_1_block_3 li {
    margin: 5px;
    display: flex;
    flex-direction: row;
}
.solutions_audit_explain_1_check {
    width: 20px;
    height: auto;
    fill: var(--primary-color);
    margin-right: 10px;
}
#solutions_audit_explain_1_button {
    margin-bottom: 60px;
    justify-content: flex-start;
}

.deliverables-section {
    padding: 3rem 2rem;
    margin: 0 auto;
}

.deliverables-header {
    margin-bottom: 2rem;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.deliverable-card {
    background: #f5f7fa;
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deliverable-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #185FA5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.deliverable-icon svg {
    width: 20px;
    height: 20px;
}

.deliverable-card h3 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.deliverable-card p {
    color: var(--our-grey-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
}