body {
  background-color: #FFF9EF;
  line-height: 120%
}

b {
  font-weight: bold;
  margin-top: 6px;
}

ul li {
  list-style: none;
  margin-bottom: 8px;
}

.project-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 55px;
  background-color: #FFF9EF;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.project-header li {
  margin-bottom: 0;
}

.project-header .cta {
  color: black;
  background: none;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
  box-sizing: border-box;
  font-size: 14px;
}

.project-header a, .menu-btn {
  color: black !important;
}

.main-title h1 {
  font-size: 64px;
  font-weight: normal;
  line-height: normal;
}

.side-img {
  width: 50%;
  height: calc(100vh - 55px);
  position: sticky;
  top: 55px;
  object-fit: cover;
  flex-shrink: 0;
}

.content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-top: 55px;
  min-height: 100vh;
}

.container {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 20px 30px;
  margin-left: auto;
  box-sizing: border-box;
}

.content .project-details {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-left: auto;
  box-sizing: border-box;
}

.description, 
.information, 
.challenge, 
.opportunity, 
.solution, 
.outcome, 
.impact,
.references {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 64px;
}

.description-content {
  font-size: 14px;
}

.information-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  font-size: 14px;
  gap: 32px;
}

h4 {
  font-weight: normal;
  font-size: 24px;
}

.see-also {
  padding: 80px 20px 40px 20px;
  font-weight: normal;
  font-size: 48px;
}

footer {
  line-height: 1;
}

@media (max-width: 700px) {
  .container {
    width: 100%;
    padding: 0;
  }
  .side-img {
    display: none !important;
  }
  .description, 
  .information, 
  .challenge, 
  .opportunity, 
  .solution, 
  .outcome, 
  .impact,
  .references {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}