/* Reset */
body, h1, h2, h3, p, ul, li {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #faf3e0;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background: #8c5e3c;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Layout */
.container {
  display: flex;
  flex: 1;
}

/* Sidebar */
.sidebar {
  width: 220px;
  background: #e6d2b5;
  padding: 20px;
  border-right: 3px solid #8c5e3c;
}

.sidebar h3 {
  margin-bottom: 10px;
}

.sidebar ul {
  list-style: none;
  margin-bottom: 20px;
}

.sidebar li {
  margin: 8px 0;
}

.sidebar a {
  text-decoration: none;
  color: #333;
}

.sidebar a:hover {
  color: #8c5e3c;
  font-weight: bold;
}

/* Main content */
.content {
  flex: 1;
  padding: 20px;
}

/* Footer */
footer {
  background: #8c5e3c;
  color: white;
  text-align: center;
  padding: 10px;
}
