body {
      background-color: #007C77;
      font-family: 'Karla', sans-serif;
      font-size: 17px;
      margin: 0;
      padding: 0;
    }    .primary-nav {
      background-color: #5C5C5C;
      display: flex;
      justify-content: space-between;
      padding: 10px 44px;
    }    .primary-nav a {
      color: #ECF0F1;
      font-family: 'Karla', sans-serif;
      font-size: 17px;
      text-decoration: none;
    }    .primary-nav a:hover {
      color: #5C5C5C;
    }    #container {
      background-color: #ECF0F1;
      margin: 0 auto;
      max-width: 925px;
      padding: 44px;
	margin-bottom: 33px;
    }  h1 {
      color: #ECF0F1;
      font-family: 'Raleway', sans-serif;
      font-weight: bold;
        font-size: 30px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #007C77;
      padding: 10px 17px;
      border-radius: 17px;      
      z-index: 1;
    }
header {
  position: relative;
}  h2  {
      color: #007C77;
      font-family: 'Raleway', sans-serif;
      font-weight: bold;
	font-size: 26px;
    }  h4  {
      color: #007C77;
      font-family: 'Raleway', sans-serif;
      font-weight: bold;
	font-size: 21px;
    }  h5  {
      color: #007C77;
      font-family: 'Raleway', sans-serif;
      font-weight: bold;
	font-size: 19px;
    }  h6  {
      color: #007C77;
      font-family: 'Raleway', sans-serif;
      font-weight: bold;
        font-size: 17px;
    }  p, li {
      color: #5C5C5C;
      font-family: 'Karla', sans-serif;
      font-size: 17px;
      line-height: 1.5;
    }  table {
      border-collapse: collapse;
      border: 2px solid #5C5C5C;
      margin-bottom: 44px;
      width: 100%;
    }  th {
      background-color: #5C5C5C;
      color: #ECF0F1;
      font-family: 'Karla', sans-serif;
      font-weight: normal;
      padding: 10px;
      text-align: left;
    }  td {
      border: 2px solid #5C5C5C;
      padding: 10px;
      text-align: left;
    }form {
  background-color: #ECF0F1;
  border: 2px solid #5C5C5C;
  border-radius: 5px;
  padding: 17px;
}

label {
  display: block;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}
  #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 #5C5C5C;
  border-radius: 5px;
  font-size: 17px;
  padding: 10px;
  width: 44%;
  margin-bottom: 17px;
}

input[type='submit'] {
  background-color: #007C77;
  border: none;
  color: #ECF0F1;
  font-size: 17px;
  font-weight: bold;
  padding: 10px 17px;
  border-radius: 5px;
  cursor: pointer;
}input[type='submit']:hover {
  background-color: #0D3B66;
}  #footer {
      background-color: #5C5C5C;
      color: #ECF0F1;
      padding: 17px;
      text-align: center;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }  #footer-nav {
  display: flex;
  flex-direction: row;
  background-color: #5C5C5C;
  margin-left: 17%;
}  #footer-nav a {
  color: #ECF0F1;
  text-decoration: none;
  padding: 10px 33px;
}  #footer-nav a:hover {
      text-decoration: underline;
    }  #copyright {
      color: #ECF0F1;
      font-size: 17px;
      font-family: 'Karla', sans-serif;
    }