.capability-matrix-wrapper-0294b4dd {
    width: 100%;
    margin: 0 auto;
}

.matrix-section-title {
    font-weight: 700;
    color: #214462;
    margin-bottom: 30px;
    text-align: left;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.matrix-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.matrix-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.matrix-card-title {
    font-weight: 600;
    color: #214462;
    margin-top: 0;
    margin-bottom: 12px;
}

.matrix-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

@media (max-width: 768px) {
    .matrix-grid {
        grid-template-columns: 1fr;
    }
}
