/* Reset and base styles */
body {
  margin: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: #fff0f5;
  display: flex;
}

/* Sidebar */
.sidebar {
  width: 200px;
  background-color: #ffe4f0;
  padding: 20px;
  height: 100vh;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  position: fixed;
}

.sidebar h1 {
  font-size: 20px;
  color: #ff69b4;
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar a {
  text-decoration: none;
  color: #ff1493;
  font-weight: bold;
}

/* Main content */
.main-content {
  margin-left: 220px;
  padding: 30px;
  background-color: #fffafc;
  border-radius: 20px;
  width: calc(100% - 240px);
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.main-content h2 {
  color: #db7093;
}

.main-content p {
  font-size: 16px;
  line-height: 1.6;
}
