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

body {
  font-family: Poppins, sans-serif;
  background: #f7f5f2;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */

header {
  background: white;
  border-bottom: 1px solid #eee;
}

.nav {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 30px;
  font-weight: 700;
  color: #7b5d49;
}

.privacy {
  color: #555;
  text-decoration: none;
  font-weight: 500;
}

.privacy:hover {
  color: #7b5d49;
}

/* Hero */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.badge {
  display: inline-block;
  background: #ede4dd;
  color: #7b5d49;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 25px;
}

h1 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  background: #7b5d49;
  color: white;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 14px;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-4px);
}

.right {
  text-align: center;
}

.right img {
  width: 320px;
  border-radius: 35px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Footer */

footer {
  border-top: 1px solid #eee;
  padding: 25px 0;
  background: white;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer a {
  color: #7b5d49;
  text-decoration: none;
}

/* Mobile */

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  h1 {
    font-size: 42px;
  }

  .right img {
    width: 250px;
    margin-top: 40px;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
  }
}
