To modify the font of the accordion heading to white, please check out the screenshot provided below. While the code functions properly in "fiddle", it seems that when I inserted the CSS snippet into a SharePoint 2013 page, the font color does not display correctly.
.accordionTitle,
.accordion__Heading {
background-color: #00008B;
text-align: center;
font-weight: 700;
padding: 2em;
display: block;
text-decoration: none;
color:white;
-webkit-transition: background-color 0.5s ease-in-out;
transition: background-color 0.5s ease-in-out;
border-bottom: 1px solid #8000000;
}