.elementor-1323 .elementor-element.elementor-element-fe07017{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS *//* style.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

article {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
    color: #0054a6;
    border-bottom: 3px solid #0054a6;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 2.2em;
}

h2 {
    color: #0077be;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.8em;
    border-right: 5px solid #0077be;
    padding-right: 15px;
}

h3 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.4em;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

a {
    color: #0054a6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul, ol {
    margin: 10px 0 20px 30px;
}

li {
    margin-bottom: 5px;
}

/* תשובה ישירה */
.direct-answer {
    background-color: #eef7fc;
    padding: 15px;
    border-right: 5px solid #0077be;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
    margin: 20px 0;
}

/* טבלה */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

th {
    background-color: #0054a6;
    color: white;
    padding: 12px 10px;
    font-weight: 600;
    text-align: center;
}

td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: right;
}

tr:nth-child(even) {
    background-color: #f8f8f8;
}

tr:hover {
    background-color: #f1f9ff;
}

/* תיבות מיוחדות */
.abstract, .key-takeaways, .personal-experience, .references, .faq {
    margin: 30px 0;
    padding: 20px;
    border-radius: 8px;
}

.abstract {
    background-color: #f0f7ff;
    border: 1px solid #b8d9ff;
}

.key-takeaways {
    background-color: #e8f4f8;
    border-right: 8px solid #0054a6;
}

.personal-experience {
    background-color: #fff3e0;
    border-right: 8px solid #ff9800;
}

.references {
    background-color: #f2f2f2;
    border: 1px dashed #999;
}

.faq {
    background-color: #f9f9f9;
}

.faq-item {
    background-color: white;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #0054a6;
    margin-top: 0;
    font-size: 1.2em;
}

.author-byline {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* תקציר סיום */
.closing {
    background-color: #e2f0d9;
    border-right: 8px solid #2e7d32;
}

/* רספונסיביות */
@media (max-width: 768px) {
    body { padding: 10px; }
    article { padding: 15px; }
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }
    table { font-size: 0.85em; }
    th, td { padding: 6px; }
}/* End custom CSS */