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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #3b2a1a;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #7a5f45 0%, #a07d5e 40%, #b89878 100%);
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.highlight {
  font-weight: 600;
}

.hero-content p {
  font-size: 1.15rem;
  color: #e0d3c5;
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
