/* Reset & Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f5f3;
  color: #4a2f2b;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Links */
a {
  color: #b5534a;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #7f3529;
}

/* Containers */
.container {
  max-width: 1100px;
  margin: auto;
}

/* Section titles */
.section-title {
  text-align: center;
  font-size: 36px;
  color: #000;
  margin-bottom: 40px;
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
}
