.elementor-4942 .elementor-element.elementor-element-9d541a3{--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 );}@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 );}}@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 );}}/* Start custom CSS *//* 
   קובץ עיצוב לעמוד העוגן - ביטוח אחריות מקצועית למניקוריסטית
   DCN ישראל
*/

/* משתנים ושורש */
:root {
    --primary-color: #1a5c8c; /* כחול DCN - סמכות ואמינות */
    --secondary-color: #2a8a72; /* טורקיז - צמיחה ובריאות */
    --accent-color: #e63946; /* אדום עדין - תשומת לב לסיכונים */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* איפוס בסיסי */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Heebo', 'Open Sans Hebrew', sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: #fff;
    direction: rtl;
    text-align: right;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* טיפוגרפיה */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    margin-top: 0;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 15px;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    padding-right: 15px;
    border-right: 4px solid var(--secondary-color);
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.8rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

/* כותרת המאמר */
.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.quick-answer {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    border-right: 5px solid var(--primary-color);
    box-shadow: var(--box-shadow);
    margin-top: 1.5rem;
}

.quick-answer p {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0;
}

/* תקציר מנהלים */
.executive-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    border: 1px solid #dee2e6;
}

.executive-summary h2 {
    text-align: center;
    border: none;
    padding-right: 0;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.hebrew-summary, .english-abstract {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.english-abstract {
    border-right: 5px solid var(--secondary-color);
    direction: ltr;
    text-align: left;
}

.english-abstract h3 {
    color: var(--primary-color);
    border-right: none;
    padding-right: 0;
}

/* גוף המאמר */
.main-content {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed var(--light-gray);
}

.content-section {
    margin-bottom: 2.5rem;
}

/* רשימות */
ul, ol {
    margin: 1.5rem 0 1.5rem 2rem;
    padding-right: 1rem;
}

li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

ul li::marker {
    color: var(--secondary-color);
}

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
    position: relative;
    padding-right: 2.5rem;
}

ol li:before {
    content: counter(item);
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    position: absolute;
    right: 0;
    top: 0;
}

/* טבלה */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.data-table caption {
    caption-side: top;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.data-table thead {
    background-color: var(--primary-color);
    color: white;
}

.data-table th {
    padding: 18px 15px;
    text-align: right;
    font-weight: 600;
}

.data-table tbody tr {
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

.data-table tbody tr:nth-child(even) {
    background-color: var(--light-color);
}

.data-table tbody tr:hover {
    background-color: rgba(42, 138, 114, 0.08);
}

.data-table td {
    padding: 15px;
    text-align: right;
}

.data-table td:first-child {
    font-weight: 600;
    color: var(--secondary-color);
}

/* שאלות נפוצות */
.faq-section {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    border: 1px solid #e2e8f0;
}

.faq-section h2 {
    text-align: center;
    border: none;
    padding-right: 0;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.faq-item {
    background-color: white;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-right: 4px solid var(--accent-color);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px dotted var(--light-gray);
}

.faq-item p {
    margin-bottom: 0;
    padding-top: 10px;
}

/* כיתוב והבהרות */
strong {
    color: var(--primary-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px dotted var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
    border-bottom-style: solid;
}

/* סיכום וקריאה לפעולה */
.article-footer {
    margin-top: 3rem;
}

.conclusion {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d4a70 100%);
    color: white;
    padding: 35px;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.conclusion h2 {
    color: white;
    border: none;
    padding-right: 0;
}

.conclusion p {
    font-size: 1.15rem;
}

.disclaimer {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--gray-color);
    border-right: 4px solid var(--accent-color);
}

/* מדיה קווריז לרספונסיביות */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .quick-answer, .executive-summary, .faq-section, .conclusion {
        padding: 20px;
    }
    
    .data-table {
        display: block;
        overflow-x: auto;
    }
    
    .data-table th, .data-table td {
        min-width: 150px;
    }
}

/* אנימציות עדינות */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pillar-page {
    animation: fadeIn 0.8s ease-out;
}

/* הדגשת מותג DCN */
.content-section p strong,
.faq-item p strong {
    color: var(--primary-color);
    position: relative;
}

.content-section p strong:after {
    content: " (DCN ישראל)";
    font-size: 0.9em;
    color: var(--secondary-color);
    font-weight: normal;
}

/* הדגשת מספרים ונתונים */
.data-table td:nth-child(2) {
    font-weight: bold;
    color: var(--accent-color);
}

/* הדגשת התראות חשובות */
.disclaimer strong {
    color: var(--accent-color);
}/* End custom CSS */