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

body {
  background-color: #fefaf7;
  font-family: system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', 'Inter', 'Roboto', sans-serif;
  color: #2c2a29;
  line-height: 1.4;
}

body.modal-open {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

::-webkit-scrollbar {
  width: 7px;
  background: #f3ece4;
}

::-webkit-scrollbar-thumb {
  background: #cbb295;
  border-radius: 12px;
}