.kontakt-aufnahme-widget {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.kontakt-title {
    text-align: center;
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 40px;
    color: #1e3a5f;
}

.kontakt-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.kontakt-left {
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    height: 100%;
}

.kontakt-right {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt-form {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kontakt-form .wpforms-container {
    max-width: 100%;
    margin: 0;
}

.kontakt-form-placeholder {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.form-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-placeholder-content i {
    display: block;
}

.form-placeholder-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}

.form-placeholder-content p {
    margin: 0;
    font-size: 1rem;
    max-width: 300px;
}

.kontakt-address {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #00c8ff;
    line-height: 1.8;
    color: #666666;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.kontakt-address .kontakt-info-section {
    margin-bottom: 15px;
}

.kontakt-address .kontakt-info-section:last-child {
    margin-bottom: 0;
}

.kontakt-address h4 {
    color: #333333;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
}

.kontakt-address p {
    margin: 0;
    color: #666666;
    font-size: 1rem;
}

.kontakt-address strong {
    color: #333333;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.kontakt-address a {
    color: #00c8ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.kontakt-address a:hover {
    color: #00b5e6;
    text-decoration: underline;
}

.kontakt-address a[href^="tel:"] {
    font-weight: 600;
    font-size: 1.2rem;
}

.kontakt-address a[href^="mailto:"] {
    font-weight: 500;
    word-break: break-all;
}

.kontakt-map {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kontakt-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kontakt-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .kontakt-left,
    .kontakt-right {
        padding: 0;
    }
    
    .kontakt-left {
        min-height: auto;
        align-items: flex-start;
    }
    
    .kontakt-right {
        gap: 20px;
    }
    
    .kontakt-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .kontakt-map {
        height: 300px;
    }
    
    .kontakt-address {
        margin-bottom: 15px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .kontakt-aufnahme-widget {
        padding: 20px 10px;
    }
    
    .kontakt-title {
        font-size: 1.8rem;
    }
    
    .kontakt-address {
        padding: 20px;
        font-size: 1rem;
    }
}

/* WPForms Styling anpassen */
.kontakt-form .wpforms-container {
    max-width: 100%;
    margin: 0!important;
}

.kontakt-form .wpforms-field-container {
    margin-bottom: 20px;
}


/* Hover-Effekte */
.kontakt-address:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 255, 0.1);
    transition: all 0.3s ease;
}

.kontakt-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
