.elementor-556 .elementor-element.elementor-element-7b32f27e{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );text-transform:var( --e-global-typography-text-text-transform );font-style:var( --e-global-typography-text-font-style );text-decoration:var( --e-global-typography-text-text-decoration );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );word-spacing:var( --e-global-typography-text-word-spacing );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 );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );word-spacing:var( --e-global-typography-text-word-spacing );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );word-spacing:var( --e-global-typography-text-word-spacing );}}/* Start custom CSS *//* משתני עיצוב */
:root {
    --primary-blue: #1a4a8f;
    --secondary-blue: #2a6bb3;
    --accent-yellow: #f0c450;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --warning-orange: #e67e22;
    --success-green: #27ae60;
}

/* איפוס כללי */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* גופן וטקסט כללי */
body {
    font-family: 'Segoe UI', 'Heebo', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-bg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* כותרת ראשית */
.main-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 0 0 20px 20px;
    margin-bottom: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.main-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.publish-date {
    background-color: rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* תוכן ראשי */
.main-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
}

/* כותרות */
h2 {
    color: var(--primary-blue);
    border-bottom: 3px solid var(--accent-yellow);
    padding-bottom: 10px;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

h3 {
    color: var(--secondary-blue);
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* פסקאות */
p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* קופסאות הדגשה */
.highlight-box {
    background-color: #f0f7ff;
    border-right: 5px solid var(--secondary-blue);
    padding: 1.8rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.highlight-box h3 {
    color: var(--primary-blue);
    margin-top: 0;
}

.warning-box {
    background-color: #fff8f0;
    border-right: 5px solid var(--warning-orange);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

/* מונחים טכניים */
.tech-term {
    background-color: #eef4ff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-family: 'Consolas', 'Courier New', monospace;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 0.95rem;
}

/* רשימות */
ul, ol {
    padding-right: 2rem;
    margin: 1.5rem 0;
}

li {
    margin-bottom: 0.8rem;
    position: relative;
}

ul li:before {
    content: "›";
    color: var(--accent-yellow);
    font-weight: bold;
    position: absolute;
    right: -1.2rem;
}

/* אייקונים */
.icon {
    color: var(--secondary-blue);
    margin-left: 8px;
}

/* כפתור CTA */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #e6b23a 100%);
    padding: 2.8rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 5px 15px rgba(240, 196, 80, 0.2);
}

.cta-section h2 {
    color: #000;
    border-bottom: none;
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 2.8rem;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(26, 74, 143, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: #0d3a7a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(26, 74, 143, 0.4);
    border-color: white;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* תחתית */
footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--secondary-blue);
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-note {
    margin-top: 1rem;
    font-size: 0.85rem;
}

/* טבלה */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    text-align: right;
    border: 1px solid #ddd;
}

.comparison-table th {
    background-color: var(--primary-blue);
    color: white;
    font-weight: bold;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* רספונסיביות */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .main-header h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .cta-section {
        padding: 1.8rem 1rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 2rem 1rem;
    }
    
    .main-header h1 {
        font-size: 1.7rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1.1rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}/* End custom CSS */