* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

/* TOP */

.top {
  text-align: center;
  padding: 40px 20px 20px;
}

.logo {
  width: 320px;
  margin-bottom: 12px;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.menu a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.menu a:hover {
  text-decoration: underline;
}

/* LAYOUT */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: #f5f5f5;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 6px;
}

/* HERO */

.hero {
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
}

/* TEXT */

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

/* CONTACT */

.contact {
  text-align: center;
}

.company {
  margin-top: 20px;
  font-size: 14px;
  color: #444;
}

/* FOOTER */

.footer {
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .logo {
    width: 260px;
  }

  .hero h1 {
    font-size: 32px;
  }
}