body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f7fa;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

img {
  max-width: 200px;
  margin-bottom: 1rem;
}

h1 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.download-button {
  background-color: #0078d7;
  color: white;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
}

.download-button:hover {
  background-color: #005ea1;
}

.contact-form {
  margin-top: 3rem;
  max-width: 400px;
  width: 100%;
}

input[type="email"],
input[type="text"],
textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background-color: #0078d7;
  color: white;
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #005ea1;
}

input:focus,
textarea:focus,
button:focus {
  outline: 2px solid #0078d7;
  outline-offset: 2px;
  background-color: #e6f0ff;
}
