* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background: linear-gradient(to bottom right, #e1f4ff, #ffffff);
  color: #222;
}
.hero {
  text-align: center;
  padding: 40px 20px;
}
.logo {
  width: 100px;
  margin-bottom: 20px;
}
h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: #222;
}
.tagline {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
}
.cta-button {
  background-color: #111;
  color: #fff;
  padding: 14px 24px;
  font-size: 1em;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-button .icon {
  width: 20px;
  height: 20px;
}
.right-image {
  text-align: center;
  margin: 40px auto;
}
.right-image img {
  max-width: 600px;
  width: 90%;
  border-radius: 20px;
}
.contact {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.contact h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
}
.contact p {
  margin: 5px 0;
  font-size: 1em;
}
footer {
  text-align: center;
  font-size: 0.9em;
  padding: 20px;
  color: #777;
}
footer a {
  color: #777;
  text-decoration: underline;
}