body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: oklch(26.639% 0.05167 78.656);
  background-color: #faf8f3;
}

header {
  background: oklch(0.8496 0.1463 90.49);
  padding: 3rem 1.5rem;
  text-align: center;
}

header h1 {
  color: oklch(26.639% 0.05167 78.656);
  margin: 0;
  font-size: 2.5rem;
}

header p {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

section {
  padding: 1.5rem 1.5rem 0;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: oklch(48.218% 0.09907 83.198);
  margin-top: 0;
  margin-bottom: 1rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);

  img {
    margin: -1.5rem -1.5rem 0 -1.5rem;
    width: calc(100% + 3rem);
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  h3 {
    color: oklch(35.831% 0.07337 85.377);
  }
}

footer {
  background: oklch(18.869% 0.02149 55.961);
  color: oklch(91.672% 0.01345 84.064);
  text-align: center;
  padding: 2rem 1.5rem 1rem;
  font-size: 0.9rem;

  p {
    margin: 0;
  }

  a {
    color: oklch(36.184% 0.03667 83.107);
    text-decoration: none;
    font-size: small;
  }
}

.ueber-uns {
  max-width: none;
  background: oklch(20.033% 0.04683 60.284);
  color: #fff;
  padding: 2rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-top: 3rem;

  .ueber-uns-content {
    max-width: 900px;
    padding: 0 1.5rem;
    margin: auto;
  }

  h2 {
    color: #fff2cc;
  }
}

.contact-form {
  max-width: none;
  background: oklch(85.219% 0.15358 82.929);
  padding: 3rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-content {
  max-width: 400px;
  margin: auto;
  padding: 0 1.5rem;

  h2 {
    margin-top: 0rem;
    margin-bottom: 1rem;
    color: #382c06;
  }
}

form {
  display: flex;
  flex-direction: column;

  label {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: oklch(26.639% 0.05167 78.656);
  }

  input,
  textarea {
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid oklch(42.09% 0.08651 83.041);
    font-family: inherit;
    font-size: 1rem;

    &:focus {
      outline: 1px solid oklch(35.473% 0.072 84.774);
      border-color: oklch(35.473% 0.072 84.774);
    }
  }

  textarea {
    height: 150px;
    resize: vertical;
    font-size: 1rem;
  }

  button {
    background: oklch(35.473% 0.072 84.774);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: fit-content;
    transition: background 0.3s ease;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;

    &:hover {
      background: oklch(42.09% 0.08651 83.041);
    }
  }
}