.elementor-907 .elementor-element.elementor-element-efb9498{--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-907 .elementor-element.elementor-element-f9a1dda{font-family:"Noto Sans Hebrew", Sans-serif;font-weight:400;}:root{--page-title-display:none;}/* Start custom CSS *//* ===== משתנים ותצורת בסיס ===== */
:root {
    /* צבעי המותג של Zix */
    --zix-blue: #1a5f7a;
    --zix-blue-light: #2a8bb5;
    --zix-blue-dark: #0d3b4f;
    --zix-green: #27ae60;
    --zix-green-light: #2ecc71;
    --zix-yellow: #f1c40f;
    --zix-orange: #e67e22;
    --zix-red: #e74c3c;
    
    /* צבעים ניטרליים */
    --dark-text: #2c3e50;
    --medium-text: #4a5568;
    --light-text: #718096;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 8px 30px rgba(0, 0, 0, 0.15);
    
    /* רדיוסים */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    
    /* רווחים */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    
    /* טרנזישנים */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== איפוס ועיצוב בסיסי ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Assistant', 'Rubik', 'Heebo', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--bg-light);
    direction: rtl;
    text-align: right;
    font-size: 1.05rem;
    overflow-x: hidden;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-large);
    position: relative;
    overflow: hidden;
    margin-top: var(--space-md);
    margin-bottom: var(--space-xl);
}

/* ===== עיצוב כותרות ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', 'Assistant', sans-serif;
    color: var(--zix-blue-dark);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 3px solid var(--zix-blue);
    position: relative;
    line-height: 1.2;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 120px;
    height: 3px;
    background-color: var(--zix-green);
}

h2 {
    font-size: 2rem;
    margin-top: var(--space-xxl);
    padding-right: var(--space-md);
    border-right: 5px solid var(--zix-blue-light);
    padding-top: var(--space-sm);
    position: relative;
}

h2::before {
    content: '';
    position: absolute;
    top: 0;
    right: -5px;
    width: 10px;
    height: 10px;
    background-color: var(--zix-green);
    border-radius: 50%;
}

h3 {
    font-size: 1.6rem;
    color: var(--zix-blue);
    margin-top: var(--space-xl);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--border-color);
}

h4 {
    font-size: 1.3rem;
    color: var(--medium-text);
    margin-top: var(--space-lg);
}

h5 {
    font-size: 1.1rem;
    color: var(--light-text);
    font-weight: 600;
}

/* ===== עיצוב טקסטים ===== */
p {
    margin-bottom: var(--space-md);
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
}

strong {
    color: var(--zix-blue);
    font-weight: 700;
}

em {
    font-style: italic;
    color: var(--medium-text);
}

a {
    color: var(--zix-blue-light);
    text-decoration: none;
    transition: color var(--transition-fast);
    border-bottom: 1px dotted transparent;
    position: relative;
}

a:hover {
    color: var(--zix-blue-dark);
    border-bottom-color: var(--zix-blue-light);
}

a[target="_blank"]::after {
    content: ' ↗';
    font-size: 0.9em;
    opacity: 0.7;
}

ul, ol {
    margin-right: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-right: var(--space-md);
}

li {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
    position: relative;
}

ul li::before {
    content: '•';
    color: var(--zix-blue);
    font-weight: bold;
    position: absolute;
    right: -20px;
}

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
}

ol li::before {
    content: counter(item) '.';
    color: var(--zix-blue);
    font-weight: bold;
    position: absolute;
    right: -25px;
}

/* ===== כותרת המאמר ומטא-נתונים ===== */
.article-header {
    margin-bottom: var(--space-xxl);
    padding-bottom: var(--space-xl);
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.breadcrumb {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: var(--space-lg);
    padding: var(--space-sm);
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    display: inline-block;
}

.breadcrumb a {
    color: var(--zix-blue);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--zix-blue-dark);
}

.breadcrumb span {
    color: var(--medium-text);
    font-weight: 500;
}

.breadcrumb a + a::before,
.breadcrumb a + span::before {
    content: ' › ';
    margin: 0 8px;
    color: var(--light-text);
}

.main-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--zix-blue-dark) 0%, var(--zix-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    border-right: 4px solid var(--zix-green);
}

.author-info {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex: 1;
    min-width: 300px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--zix-blue-light);
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-normal);
}

.author-avatar:hover {
    transform: scale(1.05);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 800;
    color: var(--zix-blue-dark);
    font-size: 1.2rem;
}

.author-title {
    font-size: 0.95rem;
    color: var(--medium-text);
    font-weight: 500;
}

.meta-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: left;
    flex: 1;
    min-width: 250px;
}

.publish-date, .reading-time {
    font-size: 0.95rem;
    color: var(--medium-text);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.publish-date::before {
    content: '📅';
    font-size: 1.1em;
}

.reading-time::before {
    content: '⏱️';
    font-size: 1.1em;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.tag {
    background-color: var(--bg-light);
    color: var(--zix-blue);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    font-weight: 500;
    cursor: pointer;
}

.tag:hover {
    background-color: var(--zix-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--zix-blue);
}

/* ===== סיכום מנהלים ===== */
.executive-summary {
    margin-bottom: var(--space-xxl);
    position: relative;
}

.summary-box {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(227, 242, 253, 0.95) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(219, 234, 254, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-large);
}

.summary-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(26, 95, 122, 0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
}

.summary-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at bottom left, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    border-radius: 100% 0 0 0;
}

.summary-box h2 {
    color: var(--zix-blue-dark);
    border: none;
    padding: 0;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
}

.summary-box h2::before {
    content: none;
}

.summary-content {
    position: relative;
    z-index: 1;
}

.highlight {
    background-color: rgba(41, 128, 185, 0.1);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-right: 5px solid var(--zix-blue);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    position: relative;
    box-shadow: var(--shadow-light);
}

.highlight::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(26, 95, 122, 0.2);
    font-family: Georgia, serif;
}

.key-findings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.finding {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-xl);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.finding::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--zix-green) 0%, var(--zix-blue) 100%);
}

.finding:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--zix-blue-light);
}

.finding-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.finding:hover .finding-icon {
    transform: scale(1.1);
    background-color: rgba(26, 95, 122, 0.2);
}

.finding-text {
    font-size: 1.1rem;
    flex: 1;
}

.finding-text strong {
    color: var(--zix-blue-dark);
    font-weight: 700;
}

.conclusion-box {
    background: linear-gradient(135deg, var(--zix-blue-dark) 0%, var(--zix-blue) 100%);
    color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.conclusion-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.conclusion-box h3 {
    color: white;
    border-right: 4px solid var(--zix-green-light);
    padding-right: var(--space-md);
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.conclusion-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* ===== תוכן עניינים ===== */
.table-of-contents {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(242, 247, 255, 0.95) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xxl);
    position: sticky;
    top: 20px;
    z-index: 100;
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.table-of-contents h3 {
    margin-top: 0;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.8rem;
    color: var(--zix-blue-dark);
    border: none;
    padding: 0;
}

.table-of-contents h3::before {
    content: '📑';
    font-size: 1.5em;
}

.toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-list li {
    margin-bottom: var(--space-md);
    position: relative;
    padding-right: var(--space-xl);
    transition: transform var(--transition-fast);
}

.toc-list li:hover {
    transform: translateX(-10px);
}

.toc-list li::before {
    content: '›';
    position: absolute;
    right: 0;
    color: var(--zix-blue);
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform var(--transition-fast);
}

.toc-list li:hover::before {
    transform: translateX(-5px);
    color: var(--zix-green);
}

.toc-list a {
    color: var(--medium-text);
    display: block;
    padding: var(--space-xs) 0;
    transition: all var(--transition-normal);
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px dashed transparent;
}

.toc-list a:hover {
    color: var(--zix-blue);
    transform: translateX(-5px);
    border-bottom-color: var(--zix-blue-light);
}

/* ===== טבלאות השוואה ===== */
.comparison-section, .content-section {
    margin-bottom: var(--space-xxl);
    scroll-margin-top: var(--space-xl);
}

.table-scroll-container {
    overflow-x: auto;
    margin: var(--space-xl) 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.table-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.table-scroll-container::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.table-scroll-container::-webkit-scrollbar-thumb {
    background: var(--zix-blue);
    border-radius: 4px;
}

.comparison-table, .fees-table, .sector-table, .npo-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
    font-size: 1rem;
}

.comparison-table thead, .fees-table thead, .sector-table thead, .npo-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table th, .fees-table th, .sector-table th, .npo-table th {
    background: linear-gradient(135deg, var(--zix-blue) 0%, var(--zix-blue-dark) 100%);
    color: white;
    font-weight: 700;
    padding: var(--space-lg);
    text-align: right;
    border-bottom: 3px solid var(--zix-green);
    position: sticky;
    top: 0;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.comparison-table th:first-child, .fees-table th:first-child,
.sector-table th:first-child, .npo-table th:first-child {
    border-right: 3px solid var(--zix-green);
}

.comparison-table td, .fees-table td, .sector-table td, .npo-table td {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-color);
    text-align: right;
    vertical-align: top;
    transition: background-color var(--transition-fast);
}

.comparison-table tr:nth-child(even), .fees-table tr:nth-child(even),
.sector-table tr:nth-child(even), .npo-table tr:nth-child(even) {
    background-color: rgba(248, 250, 252, 0.5);
}

.comparison-table tr:hover, .fees-table tr:hover,
.sector-table tr:hover, .npo-table tr:hover {
    background-color: rgba(41, 128, 185, 0.08);
}

.comparison-table td strong, .fees-table td strong {
    color: var(--zix-green);
    font-weight: 700;
}

.highlight-cell {
    background-color: rgba(39, 174, 96, 0.15) !important;
    font-weight: 700;
    color: var(--zix-green);
    position: relative;
}

.highlight-cell::before {
    content: '⭐';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9em;
}

.table-notes {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--medium-text);
    border-right: 4px solid var(--zix-yellow);
}

.table-notes strong {
    color: var(--zix-blue);
}

/* ===== תיבות מידע מיוחדות ===== */
.insight-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.95) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    border-right: 5px solid var(--zix-blue);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.insight-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(26, 95, 122, 0.1) 0%, transparent 70%);
}

.insight-box.warning {
    border-right-color: var(--zix-orange);
    background: linear-gradient(135deg, rgba(255, 253, 250, 0.95) 0%, rgba(255, 248, 248, 0.95) 100%);
}

.insight-box.warning::before {
    background: radial-gradient(circle at top right, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
}

.insight-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.insight-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
}

.insight-box h4 {
    color: var(--zix-blue-dark);
    margin: 0;
    font-size: 1.4rem;
}

.insight-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.quote-box {
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.95) 0%, rgba(230, 240, 255, 0.95) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    border-right: 5px solid var(--zix-blue-light);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: -30px;
    right: 30px;
    font-size: 8rem;
    color: rgba(26, 95, 122, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-box blockquote {
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--medium-text);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
    padding-right: var(--space-lg);
}

.quote-box blockquote::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--zix-green);
    border-radius: 2px;
}

.quote-box footer {
    text-align: left;
    font-size: 1rem;
    color: var(--light-text);
    position: relative;
    z-index: 1;
    padding-right: var(--space-lg);
}

.quote-box cite {
    font-style: normal;
    color: var(--zix-blue);
    font-weight: 600;
}

.data-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.data-point {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.95) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.data-point::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--zix-blue) 0%, var(--zix-green) 100%);
}

.data-point:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--zix-blue-light);
}

.data-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--zix-blue);
    line-height: 1;
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, var(--zix-blue) 0%, var(--zix-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.data-label {
    font-size: 1.1rem;
    color: var(--medium-text);
    font-weight: 500;
}

/* ===== עיצוב תוכניות וקטגוריות ===== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.program-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.95) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--zix-green) 0%, var(--zix-blue) 100%);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--zix-blue-light);
}

.program-card h4 {
    color: var(--zix-blue-dark);
    margin-top: 0;
    margin-bottom: var(--space-md);
    font-size: 1.4rem;
}

.program-card ul {
    margin-right: 0;
    padding-right: var(--space-md);
}

.program-card li {
    margin-bottom: var(--space-sm);
    padding-right: var(--space-md);
    font-size: 1rem;
}

.data-box {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.95) 0%, rgba(230, 247, 255, 0.95) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    border: 1px solid rgba(204, 231, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.data-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(26, 95, 122, 0.05) 0%, transparent 70%);
}

.data-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zix-blue);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(41, 128, 185, 0.2);
    position: relative;
    z-index: 1;
}

.data-box-content {
    display: grid;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px dashed rgba(41, 128, 185, 0.15);
    transition: background-color var(--transition-fast);
}

.data-row:hover {
    background-color: rgba(255, 255, 255, 0.5);
    padding-right: var(--space-sm);
    padding-left: var(--space-sm);
    border-radius: var(--radius-sm);
}

.data-row:last-child {
    border-bottom: none;
}

.data-label {
    color: var(--medium-text);
    font-weight: 500;
    font-size: 1.1rem;
}

.data-value {
    font-weight: 700;
    color: var(--zix-blue);
    font-size: 1.2rem;
    text-align: left;
}

/* ===== עיצוב תהליכים וטיימליין ===== */
.technical-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.process-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.95) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--zix-blue) 0%, var(--zix-green) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--zix-blue-light);
}

.process-step h5 {
    color: var(--zix-blue-dark);
    margin-top: 0;
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.process-step h5::before {
    content: '✓';
    color: var(--zix-green);
    font-weight: bold;
    font-size: 1.2em;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-text);
    margin-bottom: 0;
}

.challenges-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.challenge-item {
    background: linear-gradient(135deg, rgba(255, 253, 250, 0.95) 0%, rgba(255, 248, 248, 0.95) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    border-right: 4px solid var(--zix-orange);
    position: relative;
    overflow: hidden;
}

.challenge-item::before {
    content: '⚠️';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    opacity: 0.2;
}

.challenge-item h5 {
    color: var(--zix-orange);
    margin-top: 0;
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
}

.challenge-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-text);
    margin-bottom: 0;
}

/* ===== עיצוב תרשימים ===== */
.chart-container-small, .chart-container-large, .eligibility-chart-container {
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.95) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.chart-container-small {
    height: 350px;
}

.chart-container-large {
    height: 450px;
}

.eligibility-chart-container {
    height: 400px;
}

/* ===== עיצוב קטגוריות זכאות ===== */
.eligibility-list {
    display: grid;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.eligibility-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.95) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    border-right: 5px solid var(--zix-green);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.eligibility-item:hover {
    transform: translateX(-10px);
}

.eligibility-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
}

.eligibility-item h4 {
    color: var(--zix-blue-dark);
    margin-top: 0;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.eligibility-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
}

.eligibility-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.sub-categories, .criteria-box, .special-programs, .sector-priorities {
    background-color: rgba(248, 250, 252, 0.8);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    border-right: 3px solid var(--zix-blue-light);
}

.sub-categories h5, .criteria-box h5, .special-programs h5, .sector-priorities h5 {
    color: var(--zix-blue);
    margin-top: 0;
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
}

.sub-categories ul, .criteria-box ul, .special-programs ul, .sector-priorities ol {
    margin-right: var(--space-md);
    padding-right: var(--space-md);
}

.sub-categories li, .criteria-box li, .special-programs li, .sector-priorities li {
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

/* ===== עיצוב קריטריונים ומערכת ניקוד ===== */
.eligibility-criteria, .scoring-system, .conditional-eligibility, .eligibility-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.criterion, .score-factor, .conditional-group, .process-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.95) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.criterion:hover, .score-factor:hover, .conditional-group:hover, .process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--zix-blue-light);
}

.criterion h5, .score-factor h5, .conditional-group h5, .process-step h5 {
    color: var(--zix-blue-dark);
    margin-top: 0;
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.criterion p, .score-factor p, .conditional-group p, .process-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-text);
    margin-bottom: 0;
}

.score-factor h5::after {
    content: attr(data-points);
    background-color: var(--zix-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: auto;
}

.process-step .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--zix-blue) 0%, var(--zix-blue-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

/* ===== עיצוב שאלות נפוצות ===== */
.faq-container {
    margin-top: var(--space-xl);
}

.faq-item {
    margin-bottom: var(--space-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--zix-blue-light);
    box-shadow: var(--shadow-light);
}

.faq-question {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(242, 247, 255, 0.95) 100%);
    padding: var(--space-xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(242, 247, 255, 0.95) 0%, rgba(235, 242, 255, 0.95) 100%);
}

.faq-question.active {
    background: linear-gradient(135deg, rgba(235, 242, 255, 0.95) 0%, rgba(227, 237, 255, 0.95) 100%);
    border-bottom-color: var(--zix-blue-light);
}

.faq-icon {
    font-size: 1.5rem;
    margin-left: var(--space-sm);
    color: var(--zix-blue);
}

.faq-text {
    flex-grow: 1;
    font-weight: 700;
    color: var(--zix-blue-dark);
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--light-text);
    transition: all var(--transition-normal);
    min-width: 30px;
    text-align: center;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--zix-red);
}

.faq-answer {
    padding: var(--space-xl);
    background-color: var(--bg-white);
    display: none;
    border-top: 1px solid var(--border-color);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-text);
    margin-bottom: 0;
}

/* ===== עיצוב מקורות ===== */
.sources-list {
    display: grid;
    gap: var(--space-xl);
    margin: var(--space-xxl) 0;
}

.source-item {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.95) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    border-left: 5px solid var(--zix-blue);
    transition: transform var(--transition-normal);
}

.source-item:hover {
    transform: translateX(-10px);
}

.source-logo {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 95, 122, 0.1);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.source-item:hover .source-logo {
    transform: scale(1.1);
    background-color: rgba(26, 95, 122, 0.2);
}

.source-content {
    flex: 1;
}

.source-content h4 {
    color: var(--zix-blue-dark);
    margin-top: 0;
    margin-bottom: var(--space-md);
    font-size: 1.4rem;
}

.source-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-text);
    margin-bottom: var(--space-sm);
}

/* ===== עיצוב המלצות וסיכום ===== */
.key-recommendations {
    margin: var(--space-xxl) 0;
}

.recommendation {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 252, 255, 0.95) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    border-right: 5px solid var(--zix-blue);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.recommendation:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-large);
}

.recommendation::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 95, 122, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.recommendation:hover::before {
    opacity: 1;
}

.rec-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--zix-blue) 0%, var(--zix-blue-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-light);
}

.rec-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.rec-content h4 {
    color: var(--zix-blue-dark);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.rec-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-text);
    margin-bottom: 0;
}

.final-thoughts {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(242, 247, 255, 0.95) 100%);
    padding: var(--space-xxl);
    border-radius: var(--radius-lg);
    margin: var(--space-xxl) 0;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.final-thoughts::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top right, rgba(26, 95, 122, 0.1) 0%, transparent 70%);
}

.final-thoughts::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at bottom left, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
}

.final-thoughts h3 {
    color: var(--zix-blue-dark);
    border: none;
    margin-top: 0;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.final-thoughts p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--medium-text);
    position: relative;
    z-index: 1;
}

.final-thoughts p:last-child {
    margin-bottom: 0;
}

/* ===== סמן התקדמות קריאה ===== */
.reading-progress {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(41, 128, 185, 0.1);
    z-index: 10000;
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--zix-green) 0%, var(--zix-blue) 100%);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.reading-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background-color: var(--zix-blue-dark);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===== עיצוב טיפוחים נוספים ===== */
.callout-box {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    border-right: 5px solid var(--zix-green);
    text-align: center;
}

.callout-box h4 {
    color: var(--zix-green);
    margin-top: 0;
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}

.callout-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--medium-text);
    margin-bottom: var(--space-lg);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--zix-green) 0%, var(--zix-green-light) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    color: white;
    border: none;
}

/* ===== עיצוב فوتر ===== */
.article-footer {
    margin-top: var(--space-xxl);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--border-color);
}

.footer-content {
    display: grid;
    gap: var(--space-xl);
}

.copyright p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: var(--space-xs);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.footer-links a {
    color: var(--medium-text);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--zix-blue);
}

.article-stats p {
    font-size: 0.9rem;
    color: var(--light-text);
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

/* ===== רספונסיביות ===== */
@media (max-width: 1200px) {
    .content-container {
        margin: var(--space-sm);
        padding: var(--space-lg);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .key-findings {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .content-container {
        padding: var(--space-md);
        margin: var(--space-xs);
        border-radius: var(--radius-md);
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.5rem;
        padding-right: var(--space-sm);
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .meta-details {
        text-align: right;
        width: 100%;
    }
    
    .author-info {
        width: 100%;
    }
    
    .programs-grid,
    .eligibility-criteria,
    .scoring-system,
    .conditional-eligibility,
    .eligibility-process {
        grid-template-columns: 1fr;
    }
    
    .comparison-table, .fees-table,
    .sector-table, .npo-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th, .comparison-table td,
    .fees-table th, .fees-table td,
    .sector-table th, .sector-table td,
    .npo-table th, .npo-table td {
        padding: 12px 8px;
    }
    
    .table-of-contents {
        position: static;
        margin-bottom: var(--space-lg);
    }
    
    .source-item {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .recommendation {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .rec-number {
        align-self: flex-start;
    }
    
    .chart-container-small,
    .chart-container-large,
    .eligibility-chart-container {
        padding: var(--space-md);
        height: 300px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    body {
        padding: 10px;
    }
    
    .content-container {
        padding: var(--space-sm);
        margin: 0;
        border-radius: var(--radius-sm);
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .summary-box,
    .insight-box,
    .quote-box,
    .data-box,
    .program-card,
    .eligibility-item,
    .faq-item,
    .source-item,
    .recommendation,
    .final-thoughts {
        padding: var(--space-md);
    }
    
    .highlight {
        padding: var(--space-md);
    }
    
    .finding {
        padding: var(--space-md);
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .finding-icon {
        align-self: center;
    }
    
    .data-highlight {
        grid-template-columns: 1fr;
    }
    
    .table-scroll-container {
        margin-right: -16px;
        margin-left: -16px;
        border-radius: 0;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
}

/* ===== אנימציות ומעברים מתקדמים ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== עיצוב כפתורים אינטראקטיביים ===== */
.interactive-button {
    background: linear-gradient(135deg, var(--zix-blue) 0%, var(--zix-blue-dark) 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-medium);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.interactive-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.interactive-button:active {
    transform: translateY(0);
}

.interactive-button.secondary {
    background: linear-gradient(135deg, var(--zix-green) 0%, var(--zix-green-light) 100%);
}

/* ===== עיצוב קווים מעוצבים ===== */
.decorative-line {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--zix-blue) 50%, transparent 100%);
    margin: var(--space-xl) 0;
    position: relative;
}

.decorative-line::before {
    content: '';
    position: absolute;
    top: -4px;
    right: 50%;
    transform: translateX(50%);
    width: 10px;
    height: 10px;
    background-color: var(--zix-green);
    border-radius: 50%;
}

/* ===== עיצוב למצב כהה ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-text: #e2e8f0;
        --medium-text: #cbd5e0;
        --light-text: #a0aec0;
        --bg-light: #2d3748;
        --bg-white: #1a202c;
        --border-color: #4a5568;
        --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
        --shadow-large: 0 8px 30px rgba(0, 0, 0, 0.5);
    }
    
    .summary-box, .insight-box, .quote-box,
    .program-card, .data-box, .challenge-item,
    .eligibility-item, .source-item, .recommendation,
    .final-thoughts, .table-of-contents,
    .chart-container-small, .chart-container-large,
    .eligibility-chart-container {
        background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(55, 65, 81, 0.95) 100%);
        border-color: var(--border-color);
    }
    
    .comparison-table tr:nth-child(even),
    .fees-table tr:nth-child(even),
    .sector-table tr:nth-child(even),
    .npo-table tr:nth-child(even) {
        background-color: rgba(45, 55, 72, 0.5);
    }
    
    .comparison-table tr:hover,
    .fees-table tr:hover,
    .sector-table tr:hover,
    .npo-table tr:hover {
        background-color: rgba(41, 128, 185, 0.15);
    }
    
    .table-notes, .sub-categories, .criteria-box,
    .special-programs, .sector-priorities {
        background-color: rgba(45, 55, 72, 0.8);
    }
    
    .criterion, .score-factor, .conditional-group,
    .process-step, .finding {
        background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(55, 65, 81, 0.95) 100%);
    }
    
    .faq-question {
        background: linear-gradient(135deg, rgba(45, 55, 72, 0.95) 0%, rgba(55, 65, 81, 0.95) 100%);
    }
    
    .faq-answer {
        background-color: var(--bg-white);
    }
    
    .highlight-cell {
        background-color: rgba(39, 174, 96, 0.25) !important;
    }
    
    .conclusion-box {
        background: linear-gradient(135deg, #2c5282 0%, #2a4365 100%);
    }
}

/* ===== עיצוב להדפסה ===== */
@media print {
    .content-container {
        box-shadow: none;
        padding: 0;
        margin: 0;
        max-width: none;
    }
    
    .table-of-contents, .reading-progress,
    .article-tags, .faq-toggle,
    .interactive-button, .cta-button,
    .footer-links {
        display: none;
    }
    
    .faq-answer {
        display: block !important;
    }
    
    .chart-container-small, .chart-container-large,
    .eligibility-chart-container {
        page-break-inside: avoid;
        height: 250px;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    .highlight, .insight-box, .quote-box,
    .data-box, .program-card {
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4 {
        page-break-after: avoid;
    }
    
    p {
        orphans: 3;
        widows: 3;
    }
}

/* ===== אפקטים מיוחדים ===== */
.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: linear-gradient(45deg, var(--zix-blue), var(--zix-green), var(--zix-blue));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::after {
    opacity: 0.3;
}

/* ===== טיפוגרפיה מתקדמת ===== */
.leading-tight {
    line-height: 1.25;
}

.leading-snug {
    line-height: 1.375;
}

.leading-normal {
    line-height: 1.5;
}

.leading-relaxed {
    line-height: 1.625;
}

.leading-loose {
    line-height: 2;
}

.tracking-tight {
    letter-spacing: -0.05em;
}

.tracking-normal {
    letter-spacing: 0;
}

.tracking-wide {
    letter-spacing: 0.05em;
}

/* ===== עיצוב ליסטות מתקדם ===== */
.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    position: relative;
    padding-right: 2.5rem;
    margin-bottom: 1rem;
}

.styled-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--zix-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.styled-list li:nth-child(1)::before { content: '1'; }
.styled-list li:nth-child(2)::before { content: '2'; }
.styled-list li:nth-child(3)::before { content: '3'; }
.styled-list li:nth-child(4)::before { content: '4'; }
.styled-list li:nth-child(5)::before { content: '5'; }
.styled-list li:nth-child(6)::before { content: '6'; }
.styled-list li:nth-child(7)::before { content: '7'; }
.styled-list li:nth-child(8)::before { content: '8'; }
.styled-list li:nth-child(9)::before { content: '9'; }
.styled-list li:nth-child(10)::before { content: '10'; }

/* ===== עיצוב טעינה ===== */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ===== עיצוב טקסט סלקט ===== */
::selection {
    background-color: rgba(41, 128, 185, 0.3);
    color: var(--dark-text);
}

::-moz-selection {
    background-color: rgba(41, 128, 185, 0.3);
    color: var(--dark-text);
}/* End custom CSS */