body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f4ef;
  color: #2f2f2f;
  line-height: 1.6;
}

nav {
  background: #ffffff;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
}

nav h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 1px;
}

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

nav a:hover {
  color: #8a6f55;
}

section {
  padding: 70px 10%;
}

h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

h3 {
  color: #8a6f55;
}

.card {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.center-card {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.about-card {
  max-width: 900px;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 10%;
  min-height: 70vh;
}

.hero img {
  width: 330px;
  height: 430px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero-text {
  max-width: 600px;
}

.button {
  display: inline-block;
  margin-top: 20px;
  background: #8a6f55;
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

a {
  color: #8a6f55;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 25px;
  background: #ffffff;
  border-top: 1px solid #ddd;
  color: #666;
}

@media (max-width: 800px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 38px;
  }

  nav {
    flex-direction: column;
  }

  nav a {
    margin: 10px;
  }
}