.fräsen-wrapper {
  width: 100%;
  min-height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fräsen-content {
  width: 80%;
  margin-top: 7rem;
  margin-bottom: 3rem;
}

.fräsen-title-text {
  color: white;
}

.fräsen-title-text > h1 {
  font-size: clamp(1.9rem, 4vw, 5rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.fräsen-title-text > p {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: justify;
}

.fräsen-first-list {
  color: white;
}

.fräsen-first-list > h3 {
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
}

.fräsen-second-list {
  color: white;
}

.fräsen-second-list > h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
}

.fräsen-second-list .list-item:nth-of-type(2) {
  margin-top: 1rem;
}

.list-item {
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: clamp(0.75rem, 2vw, 1rem);
  padding-left: 3rem;
}

.nested-list-item {
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  padding-left: 6rem;
  padding-top: 0.7rem;
}

/* Responsive layout */
@media (max-width: 768px) {
  .fräsen-content {
    margin-top: 10rem;
    margin-bottom: 4rem;
  }

  .fräsen-title-text > h1 {
    text-align: center;
  }
}

@media (max-width: 500px) {
  .list-item {
    padding-left: 2rem;
  }
  .nested-list-item {
    padding-left: 4rem;
  }
}

@media (max-width: 400px) {
  .list-item {
    padding-left: 1rem;
    padding-top: 0.5rem;
  }
  .nested-list-item {
    padding-left: 2rem;
  }
}
