body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  font-family: "Rationale";
  align-items: center;
  background: #e7aa47;
  color: white;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
clip-path: polygon(0 0, 100% 0, 100% 89%, 74% 89%, 73% 100%, 0 100%);
}

.navbar nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
  font-family: "Rationale";
}

.hero {
  background: url('https://images.unsplash.com/photo-1473445730015-841f29a9490b?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 2px #e7aa47;
  padding-top: 20px;
  margin-top: -30px;
  background-color: #1b3a2b; /* fallback */
  clip-path: polygon(0 0, 100% 0, 100% 89%, 74% 89%, 70% 100%, 0 100%);
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-family: "Rationale";
}

.services, .contact {
  padding: 4rem 2rem;
  background: white;
  font-family: "Rationale";
  background-position-x: 40px;
}

.services ul {
  list-style: none;
  padding: 0;
  font-family: "Rationale";
}

.services li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
  font-family: "Rationale";
}

.contact input, .contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 95%;
}

.contact button {
  background: #e7aa47;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Rationale";
}

footer {
  background: #e7aa47;
  color: white;
  text-align: center;
  padding: 1rem;
  font-family: "Rationale";
}
