.elementor-1004 .elementor-element.elementor-element-02ab8c4{--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 );}.elementor-1004 .elementor-element.elementor-element-3855472{font-family:"Noto Sans Hebrew", Sans-serif;font-weight:400;}/* Start custom CSS *//* style.css - עיצוב עבור מאמר ZIX פיננסים */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Heebo', 'Open Sans Hebrew', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f8f9fa;
    font-size: 18px;
    text-align: right;
    direction: rtl;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

/* כותרת ראשית */
header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #2c5aa0;
}

h1 {
    font-size: 2.8rem;
    color: #1a365d;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

/* תקציר מנהלים */
.abstract {
    background-color: #f0f7ff;
    padding: 25px;
    border-radius: 8px;
    border-right: 5px solid #4a90e2;
    margin-bottom: 40px;
}

.abstract h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.abstract p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

/* סעיפי תוכן */
.content-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
}

h2 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.direct-answer {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-right: 4px solid #2c5aa0;
    font-weight: 500;
}

.direct-answer p {
    font-size: 1.1rem;
    color: #1a365d;
    margin: 0;
}

.content-block {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
    border-right: 3px solid #cbd5e0;
}

.content-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

/* טבלה */
.comparison-table {
    margin: 50px 0;
    overflow-x: auto;
}

.comparison-table h2 {
    margin-bottom: 25px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    min-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background-color: #2c5aa0;
    color: white;
}

thead th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s;
}

tbody tr:nth-child(even) {
    background-color: #f7fafc;
}

tbody tr:hover {
    background-color: #e6fffa;
}

tbody td {
    padding: 16px 15px;
    text-align: center;
    border-left: 1px solid #e2e8f0;
    color: #2d3748;
}

tbody td:first-child {
    font-weight: 600;
    color: #1a365d;
    text-align: right;
}

/* שאלות נפוצות */
.faq-section {
    margin-top: 60px;
    padding: 30px;
    background-color: #f0f9ff;
    border-radius: 10px;
}

.faq-section h2 {
    color: #2c5aa0;
    border-bottom-color: #90cdf4;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-right: 4px solid #4299e1;
}

.faq-item h3 {
    color: #2b6cb0;
    margin-top: 0;
    font-size: 1.4rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* עיצוב רספונסיבי */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .article-container {
        padding: 20px 15px;
        border-radius: 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .abstract, .direct-answer, .content-block, .faq-item {
        padding: 15px;
    }
    
    .faq-section {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.9rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    thead th, tbody td {
        padding: 12px 8px;
    }
}

/* הדגשות למונחים מקצועיים */
.term {
    background-color: #fffacd;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
    color: #744210;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.95em;
}/* End custom CSS */