form {
	font-family: 'roboto-v49-latin-regular';
}


form {
  max-width: 420px;
  display: grid;
  gap: 14px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
}

label {
  font-weight: 600;
}

input, textarea, button {
  font: inherit;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}

.checkbox input[type="checkbox"] {
  flex: 0 0 auto;
  width: auto;
  margin-top: 2px;
}


button {
  cursor: pointer;
  background: #222;
  color: #fff;
  border: none;
  transition: background .2s;
}

button:hover {
  background: #444;
}

.opener .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse; /* Bild links, Text rechts */
}

.opener .koch img {
  max-width: 100%;
  height: auto;
  display: block;
}

.opener .koch {
  flex: 1;
  text-align: left;
}

.opener .col-lg-5 {
  flex: 1;
  text-align: right;
}
.opener .koch img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
  border: 5px solid #550504;
}
.opener .koch {
  flex: 1;
  text-align: left;
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 768px) {
  .opener .row {
    flex-direction: column-reverse;
    align-items: center;
  }

  .opener .koch {
    margin-bottom: 20px;
  }
}


