/* Reset some basic elements */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: sans-serif;
    }

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* Menu bar */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 2rem;
      background-color: #eee; /* placeholder color */
    }

    .logo {
      font-weight: bold;
      font-size: 1.5rem;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    nav a {
      text-decoration: none;
      color: inherit;
      font-weight: 500;
    }

    /* Main content */
    main {
      flex: 1;
      padding: 2rem;
      background-color: #fafafa; /* placeholder color */
    }

    /* Footer */
    footer {
      text-align: center;
      padding: 1rem;
      background-color: #eee; /* placeholder color */
    }