
:root {
    --primary-color: #fec000;
    --text-color: #000000;
    --background-light: #f8f9fa;
    --border-radius: 5px;
    --form-background: #ffffff;
    --input-border: #e0e0e0;
    --hover-color: #f0b000;
}

.mhf-container {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
    font-family: 'Anton', sans-serif;
    font-weight: lighter;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    margin-top: 40px;
    font-size: 2em;
    text-align: center;
    margin-bottom: 50px;
}

.header-accent {
    display: inline-block;
    background: var(--primary-color);
    padding: 0 10px;
}

/* Branding styling */
.main-brand {
    margin: 0 !important;
    font-size: 1.4em !important;
    white-space: nowrap;
}

.sub-brand {
    font-size: 0.9em;
    margin: -5px 0 0 0 !important;
    color: #444;
}

.sub-brand span {
    font-weight: bold;
    white-space: nowrap; 
}

.mhf-contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.mhf-contact-info {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.mhf-contact-item {
    margin-bottom: 25px;
}

.mhf-contact-item strong {
    font-size: 0.9em;
}

.mhf-contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95em;
}

.mhf-contact-item a:hover {
    color: var(--primary-color);
}

.mhf-contact-form {
    background-color: var(--form-background);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--input-border);
    border-radius: var(--border-radius);
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.mhf-submit-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 30px;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 10px auto 0;
}

.mhf-submit-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

/* Berichten */
.mhf-success-message, .mhf-error-message {
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    text-align: center;
}

.mhf-success-message { background: #dff0d8; color: #3c763d; border: 1px solid #d6e9c6; }
.mhf-error-message { background: #f2dede; color: #a94442; border: 1px solid #ebccd1; }

.mhf-contact-intro {
    text-align: center;
    font-size: 1em;
    color: #444; 
    max-width: 600px;
    margin: -30px auto 40px auto; 
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mhf-container { 
        width: 95%; 
        overflow-x: hidden; 
    }
    
    .mhf-contact-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mhf-contact-form-container {
        order: 1;
    }
    .mhf-contact-info {
        order: 2;
    }
    
    .mhf-contact-info, .mhf-contact-form {
        padding: 20px;
    }

    .main-brand {
        white-space: normal !important;
        word-break: break-word;
    }

    .sub-brand span {
        white-space: normal; 
    }

    .mhf-contact-item a {
        word-break: break-all;
    }

    .mhf-submit-btn { 
        width: 100%; 
    }
}