
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f5f7;
  color: #1d1d1f;
  line-height: 1.8;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.logo img { height: 70px; }

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 600;
}

nav a:hover { color: #ff6a00; }

.section {
  padding: 80px 60px;
  max-width: 1000px;
  margin: auto;
  font-size: 18px;
}

.highlight {
  color: #ff6a00;
  font-weight: 600;
}

ul {
  margin-top: 20px;
}

form {
  margin-top: 30px;
}

input {
  padding: 12px;
  margin: 10px 0;
  width: 300px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  padding: 12px 25px;
  background: #ff6a00;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

button:hover {
  background: #e65c00;
}

footer {
  text-align: center;
  padding: 40px;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
}
