* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f8f8f8;
  color: #333;
}

header {
  background-color: #ffffff;
  text-align: center;
  padding: 30px 0;
  border-bottom: 1px solid #ccc;
}

.logo {
  max-width: 280px;
  height: auto;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

main h1 {
  font-size: 32px;
  color: #1e1e1e;
  margin-bottom: 10px;
}

main p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

footer {
  background-color: #1e1e1e;
  color: white;
  padding: 20px 15px;
  font-size: 14px;
  text-align: center;
}

footer a {
  color: #ffffff;
  text-decoration: underline;
}

.contact {
  margin-bottom: 10px;
  line-height: 1.6;
}
