.elementor-1230 .elementor-element.elementor-element-3bfa4f41{--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 *//* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background-color: #f5f7fa;
    color: #1e2b3c;
    line-height: 1.6;
    padding: 20px;
    direction: rtl;
}

.article-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    padding: 40px;
}

/* תקציר מנהלים */
.abstract {
    background-color: #f0f4f8;
    border-right: 4px solid #0f5b8c;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    font-size: 1rem;
    color: #2c3e50;
}

.abstract strong {
    color: #0f5b8c;
}

/* שורת ייחוס */
.byline {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid #e0e7ed;
}

.author-image {
    width: 60px;
    height: 60px;
    background-color: #0f5b8c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.author-info h4 {
    font-size: 1.2rem;
    color: #0a3144;
    margin-bottom: 5px;
}

.author-info p {
    color: #4a6572;
    font-size: 0.95rem;
    margin: 0;
}

/* כותרות ראשיות */
h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0a3144;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e1e9f0;
    padding-bottom: 8px;
}

h3 {
    font-size: 1.4rem;
    color: #1d4e6f;
    margin: 30px 0 15px;
}

/* תשובה ישירה */
.direct-answer {
    background-color: #f9fcff;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #d4e0e9;
    font-weight: 500;
    color: #0a3144;
}

.direct-answer strong {
    color: #0f5b8c;
}

/* פסקאות רגילות */
p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* תיבות ניסיון אישי וחווית לקוח */
.testimonial-box {
    background-color: #f0f7fb;
    border-right: 4px solid #2a7faa;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    font-style: italic;
}

.testimonial-box strong {
    color: #0f5b8c;
    font-style: normal;
}

.client-story {
    background-color: #fff4e5;
    border-right: 4px solid #e67e22;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.client-story strong {
    color: #b85c00;
}

/* מקורות מידע */
.sources {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px dashed #9aaebf;
}

.sources h4 {
    color: #0f5b8c;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.sources ul {
    list-style-type: none;
}

.sources li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    padding-right: 20px;
    position: relative;
}

.sources li:before {
    content: "•";
    color: #0f5b8c;
    font-weight: bold;
    position: absolute;
    right: 0;
}

.sources a {
    color: #0f5b8c;
    text-decoration: none;
}

.sources a:hover {
    text-decoration: underline;
}

/* רשימות */
ul, ol {
    margin: 15px 0 20px 30px;
}

li {
    margin-bottom: 8px;
    font-size: 1.02rem;
}

/* טבלה */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0 20px;
    font-size: 0.98rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

th {
    background-color: #1d4e6f;
    color: white;
    font-weight: 600;
    padding: 12px 10px;
    text-align: center;
}

td {
    padding: 12px 10px;
    border-bottom: 1px solid #dde3e8;
    text-align: center;
}

tr:nth-child(even) {
    background-color: #f8fafc;
}

tr:hover {
    background-color: #f0f5fb;
}

/* FAQ section */
.faq-section {
    margin-top: 30px;
    background-color: #f9fbfd;
    padding: 20px;
    border-radius: 10px;
}

.faq-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f5b8c;
    margin-top: 25px;
    margin-bottom: 10px;
}

.faq-section h3:first-of-type {
    margin-top: 0;
}

.faq-section p {
    margin-bottom: 25px;
    padding-right: 15px;
    border-right: 2px solid #cbdae6;
}

/* סיכום */
.key-takeaways {
    background-color: #e8f0f7;
    padding: 25px;
    border-radius: 10px;
    margin: 40px 0 30px;
    border: 1px solid #bdd3e8;
}

.key-takeaways h3 {
    color: #0a3144;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.key-takeaways ul {
    list-style-type: none;
    margin: 0;
}

.key-takeaways li {
    margin-bottom: 12px;
    padding-right: 25px;
    position: relative;
    font-size: 1.05rem;
}

.key-takeaways li:before {
    content: "✓";
    color: #0f5b8c;
    font-weight: bold;
    position: absolute;
    right: 0;
}

/* קישורים */
a {
    color: #0f5b8c;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* הערות שוליים */
.footnote {
    font-size: 0.9rem;
    color: #5f6f7e;
    border-top: 1px solid #d9e1e8;
    padding-top: 15px;
    margin-top: 20px;
}

/* התאמה למובייל */
@media (max-width: 600px) {
    .article-container {
        padding: 20px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .byline {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 8px 5px;
    }

    .faq-section h3 {
        font-size: 1.2rem;
    }
}

/* סימון מושגים מקצועיים */
strong {
    color: #1d4e6f;
}

.reference-marker {
    font-size: 0.85rem;
    color: #6c7a89;
    vertical-align: super;
}/* End custom CSS */