.gutschein-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.gutschein-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .gutschein-form {
        padding: 5px;
    }
}

.gutschein-form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.gutschein-form-section:last-of-type {
    border-bottom: none;
}

.gutschein-form-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    /*color: #333;
    font-size: 1.3em;*/
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
    width: 100%;
    /*padding: 12px;*/
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #0073aa;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-field input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 10px 10px 0 0;
    margin-right: 8px;
    vertical-align: text-bottom;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.gutschein-submit-btn {
    background: #0073aa;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.gutschein-submit-btn:hover {
    background: #005a87;
}

.gutschein-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.gutschein-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    font-size: 16px;
}

.gutschein-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.gutschein-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}