body {
  margin: 0;
  font-size: 1.2rem;
  font-family: sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.7;
}

.fullwidth-section {
  width: 100%;
  height: 8rem;
  background-color: #0065E6;
  margin: 3rem 0;
  border-radius: 3px;
}

.fullwidth-section.light-blue {
  background-color: #55B2FF;
}


/* Bereich 1: Kontakt-Infos */
#contact-info {
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.contact-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-image img {
  width: 35%;
  border-radius: 1.5rem;
  box-shadow: 0 6px 12px rgba(0, 101, 230, 0.3);
  display: block;
  margin: 0 auto;
}

.contact-box {
  text-align: center;
  font-size: 1.5rem;
  color: #222;
}

.contact-box h2 {
  font-size: 3rem;
  color: #0065E6;
  margin-bottom: 1rem;
}


/* Bereich 1.5: Social Media */
#contact-social {
  text-align: center;
  padding: 3rem 0;
}

#contact-social h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #0065E6;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

#contact-social h2::after {
  content: '';
  display: block;
  margin: 0.5rem auto 0;
  width: 100%;
  height: 4px;
  background-color: #55B2FF;
  border-radius: 2px;
}

/* Social Button unterhalb */
.social-btn-wrapper {
  margin-top: 2rem; /* Abstand zur Headline */
}

.social-btn {
  display: block;
  margin: 0 auto;
}

.social-btn img {
  width: 12rem;
  height: 12rem;
  display: block;
  margin: 0 auto;
  transition: none; /* kein extra Hover-Animation */
}


/* Bereich 2: Kontaktformular */
#contact-form-section {
  padding: 4rem 5%;
  background: #f9f9f9;
  border-radius: 2rem;
  margin: 4rem auto;
  max-width: 900px;
  box-shadow: 0 8px 20px rgba(0, 101, 230, 0.2);
}

#contact-form-headline {
  font-size: 2.5rem;
  color: #0065E6;
  text-align: center;
  margin-bottom: 2rem;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ccc;
  border-radius: 0.8rem;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0065E6;
  box-shadow: 0 0 10px rgba(0, 101, 230, 0.3);
  transform: scale(1.02);
}

/* Modern Checkbox */
.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  justify-content: flex-start;
}

.form-group.checkbox input[type="checkbox"] {
  appearance: none;
  width: 1.4rem;
  height: 1.4rem;
  border: 2px solid #0065E6;
  border-radius: 0.3rem;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-group.checkbox input[type="checkbox"]:checked {
  background-color: #0065E6;
}

.form-group.checkbox input[type="checkbox"]:checked::after {
  content: '✔';
  color: white;
  position: absolute;
  top: -0.1rem;
  left: 0.4rem;
  font-size: 1.5rem;
}

#captcha-container span {
    font-size: 24px;
    font-weight: bold;
    color: #0073e6;
    margin: 0 5px;
    display: inline-block;
    transform: rotate(0deg);
    user-select: none;
    transition: transform 0.2s;
}

/* kleine zufällige Effekte */
#captcha-container span:hover {
    transform: rotate(10deg);
}


.submit-btn {
  background: linear-gradient(90deg, #55B2FF, #0065E6);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 101, 230, 0.4);
}

@media (max-width: 48rem) {
  .contact-image img {
    width: 80%;       /* Bild wird größer im Verhältnis zum Screen */
  }
}
