* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: red;
}

h1, h2, h3, h4, h5, h6 {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 36px;
  font-weight: bold;
  margin: 20px 0;
}

header {
  padding: 20px;
  text-align: center;
}

p {
  color: white;
  font-size: 24px;
  margin: 20px auto;
  line-height: 1.6;
  font-weight: bold;
  max-width: 700px;
  text-align: center;
}

label {
  color: white;
  font-weight: bold;
  font-size: 20px;
}

aside {
  color: white;
  max-width: 700px;
  margin: 20px auto;
  text-align: center;
  line-height: 1.6;
  font-weight: bold;
  font-size: 36px;
}

.content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  flex-wrap: wrap;
}

.side-image,
.large {
  width: 400px;
  height: auto;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }
}

form {
  width: 600px;
  margin: 60px auto;
  padding: 30px;
  border: 2px solid black;
  background-color: red;
  border-radius: 20px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  margin: 10px 0;
  border: 1px solid black;
  border-radius: 8px;
  box-sizing: border-box;
}

dl#faq {
  display: block;
  width: 85%;
  margin: 0 auto;
  padding-bottom: 10px;
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

dl#faq dt {
  background: url("Images/plus.png") left center/25px no-repeat;
  font-size: 1.4em;
  display: block;
  margin: 10px 0;
  text-indent: 60px;
  color: white;
  cursor: pointer;
  user-select: none;
}

dl#faq dt.hiddenAnswer {
  background: url("Images/minus.png") left center/25px no-repeat;
}

dt + dd {
  display: none;
}

dl#faq dd p {
  font-size: 1.2em;
  line-height: 1.4;
  margin: 0 0 15px 65px;
  font-family: "Gill Sans", Helvetica, Arial, sans-serif;
  text-align: justify;
  color: white;
}