.elementor-4944 .elementor-element.elementor-element-583e4de{--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 );line-height:var( --e-global-typography-text-line-height );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-4944 .elementor-element.elementor-element-6250806{font-family:"Noto Sans Hebrew", Sans-serif;font-size:16px;font-weight:300;line-height:1.4em;}@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 );}.elementor-4944 .elementor-element.elementor-element-6250806{font-size:15px;}}@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 );}.elementor-4944 .elementor-element.elementor-element-6250806{font-size:15px;}}/* Start custom CSS *//* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #9b59b6;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #555;
    --border-color: #ddd;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Assistant', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    direction: rtl;
    text-align: right;
}

h1, h2, h3, h4 {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-top: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.main-header {
    background: linear-gradient(to left, var(--primary-color), #1a2530);
    color: white;
    padding: 1.5rem 0;
    box-shadow: var(--box-shadow);
}

.branding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.branding h1 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 0;
}

.tagline {
    font-size: 1.1rem;
    color: var(--light-color);
    font-weight: 300;
}

/* ===== MAIN CONTENT ===== */
main.container {
    padding: 2rem 20px;
}

.pillar-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

/* Article Header & Quick Answer */
.article-header {
    margin-bottom: 3rem;
}

.quick-answer {
    margin-top: 2rem;
}

.answer-card {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-right: 5px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.answer-card h2 {
    display: flex;
    align-items: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0;
}

.answer-card .icon {
    margin-left: 10px;
    font-size: 1.5rem;
}

/* Executive Summary */
.executive-summary {
    margin-bottom: 3rem;
}

.bilingual-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.hebrew-summary, .english-summary {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.english-summary {
    direction: ltr;
    text-align: left;
}

.english-summary h3 {
    text-align: left;
}

@media (max-width: 768px) {
    .bilingual-summary {
        grid-template-columns: 1fr;
    }
}

/* Chapters */
.chapter {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.chapter:last-of-type {
    border-bottom: none;
}

.chapter-content {
    padding-top: 1rem;
}

/* Lists */
.bullet-list, .numbered-list {
    margin: 1.5rem 0;
    padding-right: 1.5rem;
}

.bullet-list li, .numbered-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.bullet-list li {
    list-style-type: disc;
}

.numbered-list {
    list-style-type: decimal;
}

/* Table */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table thead {
    background-color: var(--primary-color);
    color: white;
}

.pricing-table th, .pricing-table td {
    padding: 1rem;
    text-align: right;
    border: 1px solid var(--border-color);
}

.pricing-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pricing-table tbody tr:hover {
    background-color: #f0f7ff;
}

.pricing-table td:first-child {
    font-weight: 600;
}

/* Insight Cards */
.insight-card {
    background-color: #fff9e6;
    border-right: 4px solid var(--warning-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--border-radius);
}

.insight-card h4 {
    display: flex;
    align-items: center;
    margin-top: 0;
}

.insight-card .icon {
    margin-left: 10px;
}

/* FAQ */
.faq {
    margin: 3rem 0;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    color: var(--accent-color);
    margin-top: 0;
}

/* Conclusion & CTA */
.conclusion {
    margin-top: 3rem;
}

.cta-box {
    background: linear-gradient(to right, #e3f2fd, #bbdefb);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2rem;
    border: 1px solid var(--secondary-color);
}

.cta-box h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin: 1.5rem 0;
    transition: var(--transition);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.footer-brand h3 {
    color: white;
    border-bottom: none;
    padding-bottom: 0;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.5;
}

.footer-disclaimer strong {
    color: white;
}

.copyright {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #aaa;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .pillar-content {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.highlight {
    background-color: #fffacd;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}/* End custom CSS */