/* Contact Page Specific Styles */

/* Example Selection */
.example-selection {
    background: #1F2937;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.example-button {
    background: #374151;
    border: none;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    color: #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.example-button:hover {
    background: #4B5563;
    transform: translateY(-2px);
}

.example-button.selected {
    background: #3B82F6;
}

.example-button h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.example-button p {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Process Steps */
.process-steps, .contact-form {
    background: #1F2937;
    padding: 30px;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 1000px;
}

.step-list {
    list-style: none;
    counter-reset: steps;
    margin: 0;
    padding: 0;
}

.step-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    counter-increment: steps;
    color: #E5E7EB;
}

.step-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

/* Contact Form */
.contact-form {
    background: #1F2937;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #E5E7EB;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: #374151;
    border: 1px solid #4B5563;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #3B82F6;
}

.privacy-notice {
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-top: 8px;
}

/* Help Box */
.help-box {
    background: #1F2937;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.help-box svg {
    width: 24px;
    height: 24px;
    color: #3B82F6;
}

.help-box h3 {
    color: white;
    margin-bottom: 8px;
}

.help-box p {
    color: #9CA3AF;
}

.help-link {
    color: #3B82F6;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.help-link:hover {
    color: #2563EB;
    text-decoration: underline;
}

/* Submit Button */
.cta-button {
    background-color: #3B82F6;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.cta-button:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(59, 130, 246, 0.2);
}

.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}


/* Responsive Design */
@media (max-width: 768px) {
    .example-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 0 15px;
    }
    
    .example-selection,
    .process-steps,
    .contact-form {
        padding: 20px;
    }
}
CSS für Modal in contact.css

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #1F2937;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
}

.modal-content h3 {
    color: white;
    margin-bottom: 20px;
}

.modal-content textarea {
    width: 100%;
    padding: 12px;
    background: #374151;
    border: 1px solid #4B5563;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
}
@media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) {
        button[type="submit"] {
            background-color: #3B82F6 !important;
            color: white !important;
            -webkit-appearance: none;
        }
    }
}