.wpkf-container {
    display: flex;
    width: 100%;
}

.wpkf-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpkf-image img {
    max-width: 100%;
    height: auto;
}

.wpkf-text {
    flex: 1;
    max-width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    color: #333;
}

@media (max-width: 768px) {
    .wpkf-container {
        flex-direction: column;
    }

    .wpkf-image,
    .wpkf-text {
        max-width: 100%;
        flex: none;
    }

    .wpkf-text {
        padding: 15px;
    }
}