
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
  font-family: 'Inter', sans-serif;
  background: #f3f3f3;
  color: #111;
  line-height: 1.6;
}

.wrapper {
  max-width: 1200px;
  margin: 20px auto;
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #f5cbf5;
    border-bottom: 1px solid #eee;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  nav {
    display: flex;
    gap: 30px;
    margin-top: 0;
  }
  nav a { text-decoration: none; color: #111; font-weight: 500; }

  .hero { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: center; padding: 40px 5%; background: #fefefe; text-align: center; }
  .hero-text h1 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 10px; }
  .hero-text p { font-size: 1rem; margin-bottom: 20px; }
  .btn { background: #f5cbf5; padding: 10px 20px; text-decoration: none; color: #111; border-radius: 4px; font-weight: 600; display: inline-block; }

  .categories { display: flex; flex-wrap: wrap; justify-content: center; padding: 40px 5%; gap: 30px; }
  .category { text-align: center; max-width: 280px; flex: 1 1 250px; }
  .category img { width: 100%; max-width: 200px; margin-bottom: 10px; }
  .category h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 5px; }
  .category p { font-size: 0.95rem; margin-bottom: 10px; }

  footer { text-align: center; padding: 40px 5%; background: #f5cbf5; font-size: 0.9rem; }
  footer nav { margin-bottom: 10px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
  footer nav a { color: #444; text-decoration: none; }

  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }

    nav {
      justify-content: center;
      width: 100%;
      margin-top: 10px;
      flex-wrap: wrap;
    }

    .hero {
      flex-direction: column;
      padding: 30px 5%;
      text-align: center;
    }

    .hero-text h1 {
      font-size: 1.4rem;
    }

    .hero-text p {
      font-size: 1rem;
      margin-bottom: 20px;
    }

    .hero img {
      max-width: 100%;
      margin-top: 20px;
    }

    .categories {
      flex-direction: column;
      gap: 40px;
      align-items: center;
    }

    .category {
      max-width: 90%;
    }

    .btn {
      padding: 10px 18px;
      font-size: 1rem;
    }

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

.hero-text .btn {
  display: inline-block;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero-text .btn {
    margin-bottom: 40px;
  }
}

