/* Contactpagina - Algemene styling */
.contact-section {
    width: 90%;
    max-width: 800px;
    margin: 100px auto 50px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.contact-button {
    display: inline-block;
    padding: 0.75em 1.5em;
    background-color: #007B8A;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin: 2em auto;
  }
  
 
  
.contact-section h1 {
    font-size: 36px;
    color: #5A7D57;
    margin-bottom: 15px;
}
.contact-section h2 {
    color: #5A7D57;
}
.contact-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #4a3f35;
    margin-bottom: 20px;
}

/* Contactgegevens met icoontjes */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.contact-info li {
    font-size: 18px;
    margin: 10px 0;
    color: #4a3f35;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info li i {
    color: #c59d76;
    font-size: 22px;
    margin-right: 10px;
}

form {
    background: #f9f7f4;
    border: 1px solid #e0d6cb;
    display: flex;
    flex-direction: column;
    max-width: 500px; /* iets groter */
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
}

label {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    color: #5A7D57;
    margin-bottom: 6px;
    margin-top: 15px;
}

input, textarea {
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 17px;
    background-color: #fff;
    border: 1px solid #ddd;
  }
  

  input:focus, textarea:focus {
    border-color: #e0aa60;
    box-shadow: 0 0 4px rgba(224, 170, 96, 0.5);
  }
  

textarea {
    height: 120px;
    resize: vertical;
}

button {
    padding: 14px;
    background-color: #5A7D57;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 17px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

button:hover {
    background-color: rgb(1, 68, 1);
}
