.elementor-199 .elementor-element.elementor-element-e000795{--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-199 .elementor-element.elementor-element-abf9bcf{font-family:"Noto Sans Hebrew", Sans-serif;font-weight:400;}/* Start custom CSS *//* RTL Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', 'Assistant', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9fbfd;
    color: #1f2a3e;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,20,50,0.1);
    padding: 40px 30px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #e0e8f0;
    padding-bottom: 20px;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3rem;
    color: #4a5a72;
}

h2 {
    font-size: 1.9rem;
    margin: 40px 0 20px;
    color: #003366;
    border-right: 6px solid #00aaff;
    padding-right: 18px;
}

h3 {
    font-size: 1.4rem;
    margin: 20px 0 10px;
    color: #1e3a5f;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #2a3b4e;
}

.direct-answer {
    background: #e2f0ff;
    padding: 25px;
    border-radius: 18px;
    border-right: 8px solid #0077be;
    font-size: 1.15rem;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,60,130,0.05);
}

.direct-answer p {
    margin: 0;
    font-weight: 500;
}

.case-study {
    background: #f4f9fc;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #cde5f5;
    margin: 30px 0;
}

.case-study p {
    font-style: italic;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,30,70,0.08);
}

.comparison-table th {
    background-color: #003366;
    color: white;
    font-weight: 600;
    padding: 16px;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #d8e2ed;
    background-color: white;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: #f0f8ff;
}

.comparison-table td:first-child {
    font-weight: 600;
    background-color: #f4f9fc;
}

/* FAQ Section */
.faq {
    background: #f9f9fc;
    padding: 30px 25px;
    border-radius: 24px;
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #003366;
    cursor: pointer;
    display: inline-block;
    border-bottom: 2px dotted #00aaff;
}

.faq-item p {
    margin-right: 20px;
    color: #2d4059;
}

/* CTA */
.cta {
    text-align: center;
    background: linear-gradient(145deg, #003366, #00284d);
    color: white;
    padding: 40px 30px;
    border-radius: 32px;
    margin-top: 50px;
}

.cta p {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #00aaff;
    color: white;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 12px 20px rgba(0,160,255,0.4);
    transition: background 0.2s, transform 0.1s;
}

.cta-button:hover {
    background: #0095dd;
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 700px) {
    .container {
        padding: 20px 16px;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    .cta p {
        font-size: 1.3rem;
    }
    .cta-button {
        font-size: 1.2rem;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    .direct-answer {
        padding: 18px;
    }
    .comparison-table th, .comparison-table td {
        padding: 12px 8px;
        font-size: 0.95rem;
    }
}/* End custom CSS */