/* Contact Form Section */
.pf-contact-form {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    margin-top: 2rem;
}

.pf-contact-form h4 {
    color: #333;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Form Styles */
.pf-form .pf-row {
    margin-bottom: 1rem;
}

.pf-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.pf-form input[type="text"],
.pf-form input[type="email"],
.pf-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    background: white;
    font-size: 14px;
    color: #333;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    min-height: 44px; /* Accessibility touch target standard */
}

.pf-form textarea {
    min-height: 88px; /* At least 2 lines worth for textarea */
    resize: vertical; /* Allow vertical resize only */
}

.pf-form input:focus,
.pf-form textarea:focus {
    border-color: #b8956a;
}

.pf-form button {
    width: 100%;
    padding: 16px 24px;
    background: #b8956a;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    transition: background-color 0.2s;
}

.pf-form button:hover {
    background: #a08555;
}

.pf-dsgvo {
    margin: 1.5rem 0;
}

.pf-dsgvo label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 0.9rem;
}

.pf-dsgvo input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}