/* Kontaktformular Styles */

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-wrapper {
    background: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.contact-info-wrapper h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2CAA7B;
}

.contact-company {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-tagline {
    color: #2CAA7B;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.contact-block {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.contact-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-block strong {
    display: block;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-block p {
    margin: 0;
    line-height: 1.6;
}

.contact-block a {
    color: #2CAA7B;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fafafa;
}

.contact-form-wrapper label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-wrapper button {
    margin-top: 12px;
    padding: 10px 16px;
    background: #2CAA7B;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-form-wrapper button:hover {
    background: #238765;
}

.contact-form-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.contact-form-success {
    background: #d1fae5;
    color: #065f46;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
