.elementor-1005 .elementor-element.elementor-element-7e0b506{--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-1005 .elementor-element.elementor-element-6047ae4{font-family:"Noto Sans Hebrew", Sans-serif;font-weight:400;}/* Start custom CSS *//* style.css - עיצוב למאמר שמאות מוקדמת */

/* איפוס בסיסי */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Heebo', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px;
    text-align: right;
    direction: rtl;
}

.article-content {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* כותרות */
h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
    border-bottom: 4px solid #3498db;
    padding-bottom: 15px;
    text-align: center;
}

h2 {
    color: #2980b9;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 8px;
    border-bottom: 2px solid #ecf0f1;
}

h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

/* תקציר */
.abstract {
    background-color: #e8f4fc;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-right: 5px solid #3498db;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* תשובה ישירה */
.direct-answer {
    background-color: #f1f8e9;
    padding: 18px 22px;
    border-radius: 8px;
    margin: 20px 0;
    border-right: 4px solid #7cb342;
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.05rem;
}

/* פסקאות */
p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    text-align: justify;
}

/* טבלה */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

table th {
    background-color: #2c3e50;
    color: white;
    text-align: right;
    padding: 16px 20px;
    font-weight: 600;
}

table td {
    padding: 14px 18px;
    border-bottom: 1px solid #e0e0e0;
    text-align: right;
}

table tr:nth-of-type(even) {
    background-color: #f8f9fa;
}

table tr:hover {
    background-color: #e3f2fd;
    transition: background-color 0.2s ease;
}

/* שאלות נפוצות */
.faq {
    background-color: #fffde7;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid #ffeb3b;
}

.faq h2 {
    border-bottom: none;
    margin-top: 0;
    color: #d35400;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #d35400;
    margin-top: 0;
}

/* footer */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
}

/* רספונסיביות */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .article-content {
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .abstract, .direct-answer, .faq {
        padding: 15px;
    }

    table {
        font-size: 0.9rem;
    }

    table th, table td {
        padding: 10px 12px;
    }
}/* End custom CSS */