/* Reset / base */
* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: #f5f7fa;
  color: #333;
}

/* Page container */
.container {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Headings */
h1 {
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

/* Question block */
.question {
  margin-bottom: 25px;
}

/* Labels */
.question label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Inputs */
input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #4a90e2;
}

/* Radio & checkbox groups */
.question input[type="radio"],
.question input[type="checkbox"] {
  margin-right: 6px;
}

/* Rating buttons spacing */
.rating label {
  margin-right: 10px;
}

/* Submit button */
button {
  width: 100%;
  padding: 12px;
  background: #4a90e2;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #3b7dc4;
}
.logo {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 180px;
}
.question-image {
  display: block;
  max-width: 100%;
  margin-bottom: 10px;
  border-radius: 6px;
}

.blocksatz {
    text-align: justify;
}
.page-layout {
    display: flex;
    flex-direction: row;   /* erzwingt links-rechts */
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.content-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    flex: 1;
}

.side-image {
    flex: 1;              /* 👈 DAS ist der Trick */
    height: 100vh;
    object-fit: cover;    /* füllt Fläche ohne Verzerrung */
}