.elementor-3415 .elementor-element.elementor-element-3449f4f7{--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-3415 .elementor-element.elementor-element-0ddc8bd{text-align:justify;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-3415 .elementor-element.elementor-element-0ddc8bd{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-3415 .elementor-element.elementor-element-0ddc8bd{font-size:15px;}}/* Start custom CSS *//* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Header styles */
header {
    border-bottom: 3px solid #0056b3;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

h1 {
    color: #0056b3;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    font-weight: 300;
}

/* Section headings */
h2 {
    color: #003d7a;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    padding-right: 10px;
    border-right: 5px solid #ff8c00;
}

h3 {
    color: #0056b3;
    font-size: 1.4rem;
    margin: 20px 0 10px 0;
}

/* Answer blocks - key feature for LLM optimization */
.answer-block {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    border: 1px solid #cce5ff;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Takeaway boxes */
.takeaway {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    font-weight: 500;
}

.takeaway strong {
    color: #856404;
    font-size: 1.1rem;
}

/* Lists */
ul, ol {
    margin: 15px 0 15px 30px;
}

li {
    margin-bottom: 8px;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

th {
    background-color: #0056b3;
    color: white;
    font-weight: 600;
    padding: 12px;
    text-align: center;
}

td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

tr:nth-child(even) {
    background-color: #f8f9fa;
}

tr:hover {
    background-color: #f2f2f2;
}

.source {
    font-size: 0.85rem;
    color: #666;
    margin-top: -15px;
    margin-bottom: 20px;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 40px 0;
    border: 1px solid #e0e0e0;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #003d7a;
    margin-bottom: 10px;
    font-size: 1.3rem;
    cursor: pointer;
}

.faq-item h3:hover {
    color: #ff8c00;
}

.faq-item p {
    padding-right: 20px;
    border-right: 3px solid #ff8c00;
    background-color: white;
    padding: 15px;
    border-radius: 6px;
    margin-top: 5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 8px;
    }
    
    .faq-section {
        padding: 15px;
    }
}/* End custom CSS */