* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #e3f5ff, #ffffff);
  color: #222;
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 5%;
}
.left {
  flex: 1;
  max-width: 500px;
}
.left .logo {
  width: 120px;
  margin-bottom: 30px;
}
.left h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.left p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
}
.right {
  flex: 1;
  text-align: center;
}
.right img {
  max-width: 100%;
  border-radius: 30px;
}

.contact {
  background: #fff;
  text-align: center;
  padding: 40px 20px;
}
.contact h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.contact p {
  font-size: 1rem;
  margin: 5px 0;
}
.contact a {
  color: #0057ff;
  text-decoration: none;
}
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #777;
}
footer a {
  color: #777;
}
