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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.header {
  background: url('header-image.webp') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  color: #724f3e;
  font-family: 'Courier New', Courier, monospace;
}

.header-content h1 {
  font-size: 5rem;
  padding-left: 5rem;
}

.header-content p {
  font-size: 2.5rem;
  padding-left: 5rem;
}

.content-section {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 40vh;
}

.section-1 {
  background: #724f3e;
  color: #c6dbdd;
  font-family: 'Courier New', Courier, monospace;
  font-size: 4rem;
  padding: 150px;
  line-height: 1.1;
}

.section-2 {
  background: #2d5260;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  font-size: 2rem;
  padding: 150px;
}

.testimonial p {
  margin-bottom: 1rem;
}

.footer {
  background: #444;
  color: white;
  font-size: 1.2rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding: 1rem 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
}
