.contact-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

label {
    color: #ff0;
    margin-bottom: 0.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    margin-bottom: 0;
    background: #fff;
    color: #000;
    box-sizing: border-box;
}

textarea {
    min-height: 8rem; /* Extra voor berichtveld */
    resize: vertical; /* Sta verticale aanpassing toe */
}

.recaptcha-group {
    margin: 2rem auto;
    width: fit-content;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.g-recaptcha {
    width: 100% !important;
    min-width: 100% !important;
    display: block;
    margin: 0 auto;
}

/* Submit-knop */
.submit-group {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}

button[type="submit"] {
    background: #ff0;
    color: #000;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    padding: 0.7rem 2.5rem;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

button[type="submit"]:hover {
    background: #ffe600;
}

.succes-melding {
  color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
  padding: 12px;
  border-radius: 6px;
  margin: 16px 0;
  font-weight: 600;
  text-align: center;
}

.fout-melding {
  color: #f44336;
  background: rgba(244, 67, 54, 0.1);
  padding: 12px;
  border-radius: 6px;
  margin: 16px 0;
  font-weight: 600;
  text-align: center;
}

.contact-info {
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  padding: 28px 28px 18px 28px;
  margin: 36px auto 36px auto;
  max-width: 420px;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.09);
  transition: box-shadow 0.2s;
}
.contact-info:hover,
.contact-info:focus-within {
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.contact-info h2 {
  color: #ffff00;
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.contact-info p {
  margin: 0 0 10px 0;
  font-size: 1.07rem;
  line-height: 1.6;
}
.contact-info a {
  color: #ffff00;
  text-decoration: underline;
  transition: color 0.2s;
}
.contact-info a:hover,
.contact-info a:focus {
  color: #fff;
  background: none;
  outline: none;
}

.contact-map {
  margin: 0 auto 32px auto;
  max-width: 500px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
}
.contact-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
}

.contact-response-time {
  color: #ffff00;
  text-align: center;
  margin-top: 18px;
  font-size: 1.08rem;
  font-weight: 600;
}
