.kontaktformular {
  padding: 120px 20px;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #fdfbfd 20%,
    #f7f2f8 100%
  );
}

.kontaktformular-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.kontaktformular-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: rgb(77, 57, 84);
  margin-bottom: 16px;
}

.kontaktformular-header .section-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6f6175;
  margin: 0;
}

.contact-form {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(77, 57, 84, 0.08);
  box-shadow: 0 20px 45px rgba(77, 57, 84, 0.08);
  border-radius: 32px;
  padding: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label,
.option-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgb(77, 57, 84);
  margin-bottom: 10px;
}

.form-group label span,
.option-title span,
.privacy-note span,
.privacy-check span span {
  color: #c89a63;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(77, 57, 84, 0.12);
  border-radius: 18px;
  background: #ffffff;
  padding: 15px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #4f4456;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(77, 57, 84, 0.35);
  box-shadow: 0 0 0 4px rgba(77, 57, 84, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.form-option-box {
  background: rgba(77, 57, 84, 0.04);
  border: 1px solid rgba(77, 57, 84, 0.08);
  border-radius: 24px;
  padding: 22px;
}

.option-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-list-wrap {
  flex-wrap: wrap;
}

.custom-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  color: #4f4456;
  cursor: pointer;
}

.custom-option input {
  accent-color: rgb(77, 57, 84);
  width: 18px;
  height: 18px;
  margin: 0;
}

.form-group-full {
  margin-bottom: 28px;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5f5365;
  cursor: pointer;
}

.privacy-check input {
  accent-color: rgb(77, 57, 84);
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.privacy-note {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: #7a6d80;
  margin: 0;
}

.contact-submit-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: #e6a96d;
  color: #2b1f30;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background: #d79557;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .form-grid,
  .form-options-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .kontaktformular {
    padding: 90px 20px;
  }

  .kontaktformular-header h2 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-submit-btn {
    width: 100%;
  }
}