* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
}

.container_kontakt {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.8s forwards;
}

.contact-form {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.8s forwards 0.2s;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #ff6b0025;
    transform: translateX(10px);
}

.info-item i {
    width: 40px;
    height: 40px;
    background: #ff6b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
}

.title {
    color: #ff6b00;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 5px;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #ff6b00;
    outline: none;
}

button {
    background: #ff6b00;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

button:hover {
    background: #e65100;
    transform: translateY(-3px);
}

.map {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    animation: slideUp 0.8s forwards 0.4s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}