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

body {
  font-family: 'Sans-serif', Ranade;
  background-color: #fdf6f0;
  color: #333;
  line-height: 1.7;
  padding: 20px;
}

header {
  text-align: center;
  background-color: #ffeef2;
  padding: 30px 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5em;
  color: #e29578;
}

.subtitle {
  font-size: 1.2em;
  color: #6b4c3b;
  margin-top: 10px;
}

nav {
  text-align: center;
  margin-bottom: 30px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #af6b58;
  font-weight: bold;
  background-color: #ffe1e6;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s;
}

nav a:hover {
  background-color: #f9c5d5;
}

main {
  max-width: 800px;
  margin: 0 auto;
  background: #fff8f0;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

section {
  margin-bottom: 40px;
}

h2 {
  color: #d18c7d;
  margin-bottom: 10px;
  font-family: 'Pacifico', cursive;
}

ul {
  list-style: disc;
  margin-left: 20px;
}

footer {
  text-align: center;
  font-size: 0.9em;
  color: #987b70;
  margin-top: 40px;
}

