.elementor-4946 .elementor-element.elementor-element-3e93f24{--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: #1a5f7a;
    --secondary-color: #57cc99;
    --accent-color: #ff9a3c;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --border-color: #dee2e6;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #f5f7fa;
    direction: rtl;
    text-align: right;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* כותרת הדף */
.article-header {
    background: linear-gradient(135deg, var(--primary-color), #2a8bb5);
    color: white;
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-brand i {
    font-size: 1.8rem;
}

.breadcrumb {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #ffd166;
    font-weight: 600;
}

/* עיצוב המאמר הראשי */
.article-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

.main-article {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 30px;
}

/* כותרת המאמר */
.article-title-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.h1-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
}

.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #666;
    font-size: 0.9rem;
}

.meta-info i {
    margin-left: 5px;
}

.author {
    color: var(--primary-color);
    font-weight: 600;
}

/* תקציר מנהלים */
.executive-summary {
    margin-bottom: 30px;
}

.summary-box {
    background-color: #e8f4fc;
    border-right: 5px solid var(--primary-color);
    padding: 20px;
    border-radius: var(--radius);
}

.summary-box h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* גוף המאמר */
.article-body {
    margin-bottom: 40px;
}

.article-body h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-body h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.article-body p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.highlight-box {
    background-color: #fff9e6;
    border: 1px solid #ffd166;
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
}

.bullet-list {
    list-style-type: none;
    padding-right: 20px;
}

.bullet-list li {
    margin-bottom: 10px;
    padding-right: 10px;
    position: relative;
}

.bullet-list li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    right: -15px;
}

/* טבלת השוואה */
.comparison-table-container {
    margin: 25px 0;
    overflow-x: auto;
}

.comparison-table-container h3 {
    margin-bottom: 15px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: right;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: right;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tr:hover {
    background-color: #e9f7fe;
}

.comparison-table .required {
    color: #28a745;
    font-weight: 600;
}

/* עלויות */
.cost-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.cost-item {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.cost-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.cost-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cost-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 10px 0;
}

.cost-desc {
    color: #666;
    font-size: 0.95rem;
}

/* תרחיש מקרה */
.case-scenario {
    background-color: #f0f7ff;
    border-radius: var(--radius);
    padding: 25px;
    margin: 30px 0;
    border-right: 5px solid var(--secondary-color);
}

.case-scenario h2 {
    border-bottom: none;
    margin-top: 0;
}

.scenario-content > div {
    margin-bottom: 20px;
}

.scenario-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.scenario-solution ul {
    list-style-type: none;
    padding-right: 20px;
}

.scenario-solution li {
    margin-bottom: 8px;
    padding-right: 10px;
    position: relative;
}

.scenario-solution li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    right: -15px;
}

/* רגולציה */
.regulatory-section {
    margin: 30px 0;
}

.regulatory-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.regulation-item {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.regulation-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* שאלות נפוצות */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background-color: #f8f9fa;
    border: none;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #e9ecef;
}

.faq-question:after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-question.active:after {
    content: "-";
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    border-top: 1px solid var(--border-color);
}

/* סגירת המאמר */
.article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.expert-note h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expert-note p {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    border-right: 4px solid var(--primary-color);
}

.contact-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.cta-button:hover {
    background-color: #0d4c63;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* פוטר */
.page-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 25px 0;
    text-align: center;
    margin-top: 40px;
}

.page-footer .disclaimer {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* מדיה קווריז */
@media (max-width: 768px) {
    .article-container {
        padding: 0 10px;
    }
    
    .main-article {
        padding: 20px;
    }
    
    .h1-title {
        font-size: 1.8rem;
    }
    
    .meta-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .cost-breakdown {
        grid-template-columns: 1fr;
    }
    
    .regulatory-content {
        grid-template-columns: 1fr;
    }
    
    .contact-cta {
        flex-direction: column;
    }
    
    .cta-button {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .h1-title {
        font-size: 1.5rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}/* End custom CSS */