To me, the most simple and efficient solution was to do this
var options = new FirefoxOptions()
{
AcceptInsecureCertificates = true
};
using (var driver = new FirefoxDriver(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), options))
{
// Your code
}
I looked into the available constructors and came up with the above code.