.advanced-contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.advanced-contact-form .form-group {
    margin-bottom: 20px;
}

.advanced-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.advanced-contact-form label .required {
    color: #e32;
    margin-left: 3px;
}

.advanced-contact-form input[type="text"],
.advanced-contact-form input[type="email"],
.advanced-contact-form input[type="tel"],
.advanced-contact-form input[type="number"],
.advanced-contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.advanced-contact-form textarea {
    min-height: 120px;
}

.advanced-contact-form .submit-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.advanced-contact-form .submit-button:hover {
    background-color: #005d87;
}

.acf-success-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Dropzone Styles */
.dropzone {
    border: 2px dashed #0087F7;
    border-radius: 5px;
    background: #f8f8f8;
    min-height: 150px;
    padding: 20px;
    text-align: center;
}

.dropzone .dz-message {
    margin: 2em 0;
}

.dropzone .dz-message .note {
    display: block;
    font-size: 0.8em;
    margin-top: 1.4em;
    color: #666;
}

.dropzone .dz-preview {
    display: inline-block;
    margin: 10px;
    vertical-align: top;
}

.dropzone .dz-preview .dz-image {
    border-radius: 4px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    display: block;
    z-index: 10;
}

.dropzone .dz-preview .dz-details {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    width: 100%;
    padding: 5px;
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
    line-height: 150%;
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}

.dropzone .dz-preview .dz-error-message {
    color: #e32;
    display: none;
}

.dropzone .dz-preview.dz-error .dz-error-message {
    display: block;
}