.elementor-1052 .elementor-element.elementor-element-3f576c2{--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-1052 .elementor-element.elementor-element-eb49117{font-family:"Noto Sans Hebrew", Sans-serif;font-weight:400;}/* Start custom CSS *//* styles.css - עיצוב למאמר פיננסי של ZIX */
:root {
    --primary-color: #0056b3; /* כחול אמין */
    --secondary-color: #28a745; /* ירוק הצלחה */
    --accent-color: #ffc107; /* צהוב הדגשה */
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --border-color: #dee2e6;
    --warning-color: #dc3545;
    --font-hebrew: 'Assistant', 'Arial', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-hebrew);
    line-height: 1.7;
    color: var(--dark-color);
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: right;
    direction: rtl;
}

/* כותרת המאמר */
.article-header {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.article-meta i {
    margin-left: 5px;
}

.disclaimer {
    background-color: #fff3cd;
    border-right: 5px solid var(--accent-color);
    padding: 12px 15px;
    border-radius: 5px;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.disclaimer i {
    color: var(--accent-color);
    margin-left: 8px;
}

/* תשובה ישירה */
.direct-answer {
    margin-bottom: 40px;
}

.answer-box {
    background-color: #e7f3ff;
    border-radius: 10px;
    padding: 25px;
    border-right: 5px solid var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.answer-box h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.answer-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* סעיפי תוכן */
.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.highlight-box {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border-right: 4px solid var(--secondary-color);
}

.highlight-box h3 {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
}

/* רשימות */
.bullet-list {
    list-style-type: none;
    margin: 20px 0;
    padding-right: 20px;
}

.bullet-list li {
    margin-bottom: 12px;
    padding-right: 30px;
    position: relative;
}

.bullet-list li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.bullet-list.warning li:before {
    content: "✗";
    color: var(--warning-color);
}

/* טבלאות */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
}

.comparison-table th {
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: right;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tbody tr:hover {
    background-color: #e9f7fe;
}

/* תיאור מקרה */
.case-study {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid var(--border-color);
}

.case-study p {
    margin-bottom: 15px;
}

.case-study ol {
    padding-right: 25px;
    margin: 15px 0;
}

.case-study li {
    margin-bottom: 10px;
}

/* שאלות נפוצות */
.faq-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.faq-item p {
    margin-bottom: 10px;
}

.faq-item ul {
    padding-right: 20px;
    margin-top: 10px;
}

.faq-item li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 20px;
}

.faq-item li:before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA */
.cta-section {
    margin-top: 40px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d82 100%);
    color: white;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.2);
}

.cta-box h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-contacts {
    margin-top: 25px;
    font-size: 1.1rem;
}

.cta-contacts a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.cta-contacts a:hover {
    text-decoration: underline;
}

.legal-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* עיצוב רספונסיבי */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-box {
        padding: 25px 20px;
    }
    
    .cta-box h3 {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 14px 25px;
        font-size: 1.1rem;
    }
    
    .faq-section {
        padding: 20px;
    }
}/* End custom CSS */