.kontakt-card {
    background: transparent; 
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}


.icon-btn {
    width: 60px;
    height: 60px;
    padding: 0;
    display: block;
    justify-content: center;
    align-items: center;
}

.icon-btn img {
    width: 100%;
    height: 100%;
    background: #fff;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #005f8f;
    box-shadow: 0 4px 10px rgba(0,0,0,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-btn img:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.20);
}

.kontakt h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #005f8f;
}

.kontakt-card h3 {
    margin: 0;
    font-size: 1.3em;
    font-weight: 700;
    color: #005f8f;
}

.kontakt-card p {
    margin: 6px 0 0;
    font-size: 1rem;
    color: #333;
}


@media (max-width: 600px) {
    .kontakt-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-btn {
        margin-bottom: 10px;
    }
}
