body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background-color: #f4f4f4;
  border-bottom: 1px solid #ddd;
}
header img {
  height: 40px;
  margin-right: 15px;
}
header h1 {
  font-size: 24px;
  margin: 0;
  color: #222;
}
main {
  flex: 1;
  padding: 20px;
}
footer {
  background-color: #222;
  color: #eee;
  padding: 20px;
  font-size: 14px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
footer .disclaimer {
  flex: 1 1 60%;
  margin-right: 20px;
}
footer .contacts {
  flex: 1 1 35%;
  min-width: 250px;
}
footer .contacts h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
}
footer a {
  color: #6edc6e;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer .copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  border-top: 1px solid #444;
  padding-top: 15px;
  color: #aaa;
}
