* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #f5f3ee;
  color: #333;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #d8cfc8;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

/* HERO */
.hero {
  display: flex;
  padding: 60px 40px;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  background: #c1c1b2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

button {
  padding: 10px 20px;
  background: #9c9c8c;
  border: none;
  color: white;
  cursor: pointer;
}

/* HEADLINE SECTION */
.headline {
  text-align: center;
  padding: 60px 40px;
  background: #d8cfc8;
}

/* HELP SECTION */
.help {
  display: flex;
  padding: 60px 40px;
  gap: 40px;
}

.help-image {
  flex: 1;
  background: #c1c1b2;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-text {
  flex: 1;
}

/* SERVICES */
.services {
  padding: 60px 40px;
  text-align: center;
}

.service-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: #e4ded8;
  padding: 20px;
  flex: 1;
}

.service-image {
  background: #c1c1b2;
  height: 150px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
