body {
  background-color: #F0F0F0;
  font-family: 'Lora', serif;
  color: #333333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

h1 {
  font-size: 1.8em;
  color: #5C4033;
  text-align: center;
  margin-top: 20px;
}

h2 {
  font-size: 1.5em;
  color: #5C4033;
  font-style: italic;
  text-align: center;
}

p {
  font-size: 1rem;
  color: #5C4033;
  text-align: center;
  margin-bottom: 1em;
}

.chart-description p {
  font-family: 'Lora', serif;
}

#chartGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

section {
  margin-bottom: 2.5em;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

figure {
  width: 100%;
  max-width: 700px;
  height: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hamburger Menu Styles */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

.hamburger div {
  width: 100%;
  height: 4px;
  background-color: #333;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Menu Styles */
.menu {
  position: fixed;
  top: 0;
  right: -300px;
  height: 100vh;
  width: 300px;
  background-color: #ffffff;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.3s ease-in-out;
  z-index: 900;
}

.menu.open {
  right: 0;
}

.menu a {
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 20px 0;
  font-weight: bold;
  letter-spacing: 0.5rem;
  color: #0D0C1D;
  text-decoration: none;
}

.menu a:hover {
  color: #065f46;
}
