.kontakt-wrapper {
    width: 100%;
    padding: 80px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.kontakt-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 60px 40px;
    max-width: 1000px;
    width: 100%;
}

.kontakt-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.kontakt-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.kontakt-content h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.kontakt-content p {
    font-size: 18px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .kontakt-box {
        padding: 40px 20px;
    }

    .kontakt-content h1 {
        font-size: 28px;
    }

    .kontakt-content h2 {
        font-size: 24px;
    }
}
