const css = `
html[lang="he-IL"] body {
    direction: rtl;
    unicode-bidi: bidi-override;
}

html[lang="he-IL"] body .elementor-widget-heading,
html[lang="he-IL"] body .elementor-widget-text-editor {
    text-align: right;
}

#contact-section .elementor-column {
    text-align: right;
}

#contact-section .elementor-icon-box-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}

#contact-section .elementor-icon-box-icon {
    margin-left: 15px;
    margin-right: 0;
}

#contact-section .elementor-icon-box-content {
    text-align: right;
}

#contact-section .elementor-form-fields-wrapper {
    direction: rtl;
}

#contact-section .elementor-field-group,
#contact-section .elementor-field-textual {
    text-align: right;
}

#contact-section input,
#contact-section textarea {
    text-align: right;
}

#contact-section .elementor-button {
    width: 100%;
    font-weight: 600;
}
`;

// יצירת תגית <style> והכנסת ה-CSS לתוכה
const style = document.createElement('style');
style.textContent = css;

// הוספה ל-head של הדף
document.head.appendChild(style);