body {
      background-color: #B3001B;
      font-family: 'Karla', sans-serif;
      font-size: 14px;
      margin: 0;
      padding: 0;
    }    .primary-nav {
      background-color: #424242;
      display: flex;
      justify-content: space-between;
      padding: 14px 57px;
    }    .primary-nav a {
      color: #FBFFB9;
      font-family: 'Karla', sans-serif;
      font-size: 17px;
      text-decoration: none;
    }    .primary-nav a:hover {
      color: #424242;
    }    #container {
      background-color: #FBFFB9;
      margin: 0 auto;
      max-width: 850px;
      padding: 57px;
	margin-bottom: 32px;
    }  h1 {
      color: #FBFFB9;
      font-family: 'Oswald', sans-serif;
      font-weight: bold;
        font-size: 31px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #B3001B;
      padding: 14px 18px;
      border-radius: 18px;      
      z-index: 1;
    }  h2  {
      color: #B3001B;
      font-family: 'Oswald', sans-serif;
      font-weight: bold;
	font-size: 25px;
    }  h4  {
      color: #B3001B;
      font-family: 'Oswald', sans-serif;
      font-weight: bold;
	font-size: 21px;
    }  h5  {
      color: #B3001B;
      font-family: 'Oswald', sans-serif;
      font-weight: bold;
	font-size: 19px;
    }  h6  {
      color: #B3001B;
      font-family: 'Oswald', sans-serif;
      font-weight: bold;
        font-size: 17px;
    }  p, li {
      color: #424242;
      font-family: 'Karla', sans-serif;
      font-size: 14px;
      line-height: 1.5;
    }  table {
      border-collapse: collapse;
      border: 2px solid #424242;
      margin-bottom: 57px;
      width: 100%;
    }  th {
      background-color: #424242;
      color: #FBFFB9;
      font-family: 'Karla', sans-serif;
      font-weight: normal;
      padding: 14px;
      text-align: left;
    }  td {
      border: 2px solid #424242;
      padding: 14px;
      text-align: left;
    }form {
  background-color: #FBFFB9;
  border: 2px solid #424242;
  border-radius: 5px;
  padding: 18px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 14px;
}
  #faq-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  input[type='checkbox'] {
    display: none;
  }
  .faq-item {
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .faq-question {
    background-color: none;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 10px;
  }
  input[type='checkbox']:checked + .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
  }
  #question1:checked ~ #faq-section .faq-item:first-child .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
  }input[type='text'],
input[type='email'],
textarea {
  border: 2px solid #424242;
  border-radius: 5px;
  font-size: 14px;
  padding: 14px;
  width: 57%;
  margin-bottom: 18px;
}

input[type='submit'] {
  background-color: #B3001B;
  border: none;
  color: #FBFFB9;
  font-size: 14px;
  font-weight: bold;
  padding: 14px 18px;
  border-radius: 5px;
  cursor: pointer;
}input[type='submit']:hover {
  background-color: #002E2C;
}  #footer {
      background-color: #424242;
      color: #FBFFB9;
      padding: 18px;
      text-align: center;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }  #footer-nav {
  display: flex;
  flex-direction: row;
  background-color: #424242;
  margin-left: 18%;
}  #footer-nav a {
  color: #FBFFB9;
  text-decoration: none;
  padding: 14px 32px;
}  #footer-nav a:hover {
      text-decoration: underline;
    }  #copyright {
      color: #FBFFB9;
      font-size: 14px;
      font-family: 'Karla', sans-serif;
    }