.fcf-form-wrap {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}

.fcf-form-wrap h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333333;
  text-align: center;
}

.fcf-field {
  margin-bottom: 20px;
}

.fcf-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #222222;
}

.fcf-field input,
.fcf-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.fcf-field input:focus,
.fcf-field textarea:focus {
  border-color: #6cb5e8;
  outline: none;
}

.fcf-button {
  background-color: #6cb5e8;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.fcf-button:hover {
  background-color: #383f46;
}

/* Gesamtstruktur */
.contact-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

/* Zwei-Spalten-Layout */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Formular links */
.contact-form {
  flex: 1 1 48%;
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Eingabefelder */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 8px;
  margin-bottom: 20px;
  font-size: 16px;
  background: #fff;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6cb5e8;
  outline: none;
}

/* Beschriftungen */
.contact-form label {
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

/* Button */
.contact-form button {
  width: 100%;
  padding: 14px;
  background-color: #6cb5e8;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #6cb5e8;
}

/* Rechte Seite: Kontaktinfos */
.contact-info {
  flex: 1 1 40%;
  padding: 20px;
  font-size: 16px;
}

.contact-info h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info p,
.contact-info a {
  margin-bottom: 20px;
  color: #333;
  text-decoration: none;
}

.contact-info i {
  color: #6cb5e8;
  margin-right: 10px;
}

/* Social Buttons */
.social-icons a {
  display: inline-block;
  width: 44px;
  height: 44px;
  margin-right: 10px;
  text-align: center;
  line-height: 44px;
  background-color: #6cb5e8;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: background 0.3s;
}

.social-icons a:hover {
  background-color: #6cb5e8;
}
