/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #f8f8f6;
  color: #1a1a1a;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: "Georgia", serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}

.container {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
}

nav {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 30px;
  font-size: 14px;
  letter-spacing: 1px;
}

.hero {
  padding: 120px 0 140px 0;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 30px;
  max-width: 800px;
}

.hero p {
  font-size: 20px;
  max-width: 600px;
}

.section {
  padding: 100px 0;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.services-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

footer {
  padding: 80px 0;
  font-size: 14px;
  border-top: 1px solid #ddd;
  margin-top: 100px;
}

.button {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 28px;
  border: 1px solid #1a1a1a;
  font-size: 14px;
  letter-spacing: 1px;
}

.button:hover {
  background-color: #1a1a1a;
  color: #f8f8f6;
  transition: 0.3s ease;
}

@media (max-width: 900px) {
  .services-list {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }
}