* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: url("images/listpage-grid.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  margin: 0;
}

nav {
  position: relative;
  z-index: 10;
  padding: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
}

nav a {
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s;
}

nav a:hover {
  opacity: 0.6;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 100px);
  height: 100vh;
  padding: 20px;
}

.side-label {
  grid-column: 1 / 2;
  grid-row: 2 / span 4;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 55px;
  color: #2f30d6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -180px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.section1 {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
  display: flex;
  flex-direction: column;
  margin-top: -38px;
  margin-left: 25px;
}

.section1 p {
  margin-top: 10px;
}

.section2 {
  grid-column: 3 / 5;
  grid-row: 3 / 4;
  display: flex;
  flex-direction: column;
  margin-top: -25px;
  margin-left: 25px;
}
.section2 p {
  margin-top: 10px;
}

.section3 {
  grid-column: 3 / 5;
  grid-row: 4 / 5;
  display: flex;
  flex-direction: column;
  margin-top: -12px;
  margin-left: 25px;
}

.section3 p {
  margin-top: 10px;
}

.section4 {
  grid-column: 3 / 5;
  grid-row: 5 / 6;
  display: flex;
  flex-direction: column;
  margin-top: -4px;
  margin-left: 25px;
}

.section1 p,
.section2 p,
.section3 p,
.section4 p {
  margin-top: 10px;
}
