.elementor-1060 .elementor-element.elementor-element-65c1e65d{--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-1060 .elementor-element.elementor-element-404ac23{font-family:"Noto Sans Hebrew", Sans-serif;font-weight:400;}/* Start custom CSS *//* style.css */
:root {
    --primary-color: #0056b3; /* כחול עמוק, מתחום הפיננסים */
    --secondary-color: #28a745; /* ירוק, לציון אפשרויות/הזדמנויות */
    --accent-color: #dc3545; /* אדום זהוב, להדגשת אזהרות או סיכונים */
    --light-bg: #f8f9fa;
    --dark-text: #212529;
    --medium-text: #6c757d;
    --border-color: #dee2e6;
    --table-header-bg: #e9ecef;
    --table-row-alt: #f8f9fa;
    --font-family: 'Rubik', 'Arial', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



.article-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-top: 20px;
}

.article-header {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 25px;
    margin-bottom: 35px;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.publish-date {
    font-size: 1rem;
    color: var(--medium-text);
    font-weight: 300;
}

.abstract {
    background-color: var(--light-bg);
    border-right: 5px solid var(--secondary-color);
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 0 8px 8px 0;
}

.abstract h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.abstract p {
    font-size: 1.1rem;
    font-weight: 400;
}

.main-content {
    margin-bottom: 50px;
}

.h2-question {
    color: var(--primary-color);
    font-size: 1.9rem;
    margin-top: 45px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px dashed var(--border-color);
}

.h3-question {
    color: var(--dark-text);
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.direct-answer {
    background-color: #e7f3ff; /* רקע כחול בהיר להבלטה */
    border: 1px solid #b6d4fe;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    font-weight: 500;
}

.direct-answer p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #004085;
}

.main-content p {
    margin-bottom: 18px;
    font-size: 1.1rem;
    text-align: justify;
    hyphens: auto;
}

.comparison-table {
    overflow-x: auto;
    margin: 40px 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
}

.comparison-table h3 {
    text-align: center;
    margin: 20px 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* לוודא שהטבלה לא תתכווץ יותר מדי במסכים קטנים */
}

thead {
    background-color: var(--table-header-bg);
}

th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 700;
    color: var(--dark-text);
    border-bottom: 2px solid var(--medium-text);
}

td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

tbody tr:nth-child(even) {
    background-color: var(--table-row-alt);
}

tbody tr:hover {
    background-color: #e3f2fd;
}

.table-note {
    font-size: 0.9rem;
    color: var(--medium-text);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.faq {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
    border: 1px solid var(--border-color);
}

.faq h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.1rem;
}

.article-footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    color: var(--medium-text);
    font-size: 0.95rem;
}

.article-footer p {
    margin-bottom: 10px;
}

/* מדיה קווריז לרספונסיביות */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .article-container {
        padding: 20px;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .h2-question {
        font-size: 1.5rem;
    }

    .h3-question {
        font-size: 1.3rem;
    }

    .abstract, .faq {
        padding: 20px;
    }

    .direct-answer {
        padding: 15px;
    }
}/* End custom CSS */