* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background-color: #0073e6;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

header h1 {
  font-size: 36px;
}

header p {
  font-size: 18px;
  margin-top: 10px;
}

section {
  margin-top: 40px;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

ul {
  list-style-type: none;
}

ul li {
  margin: 10px 0;
}

ul li a {
  color: #0073e6;
  text-decoration: none;
}

ul li a:hover {
  text-decoration: underline;
}

.faq {
  margin-bottom: 20px;
}

.faq h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-form input, .contact-form textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form button {
  background-color: #0073e6;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background-color: #005bb5;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}

footer p {
  font-size: 14px;
}
