.elementor-4788 .elementor-element.elementor-element-268da29{--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 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --primary-light: #337ab7;
    --secondary-color: #28a745;
    --secondary-dark: #1e7e34;
    --accent-color: #ffc107;
    --accent-dark: #e0a800;
    --dark-color: #333;
    --dark-gray: #555;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --danger-color: #dc3545;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    direction: rtl;
    text-align: right;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-top: 1rem;
    padding-bottom: 0.5rem;
    position: relative;
}

h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Brand Header */
.brand-header {
    background: linear-gradient(to left, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1.5rem 0;
    margin: 0 -20px 2rem;
    padding-right: 20px;
    padding-left: 20px;
    box-shadow: var(--box-shadow);
}

.brand-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-icon {
    background-color: var(--white);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.brand-tagline {
    font-style: italic;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Title Section */
.title-section {
    margin-bottom: 2.5rem;
}

.title-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: var(--primary-color);
}

/* Abstract Sections */
.abstract-section {
    margin: 2.5rem 0;
}

.abstract-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.abstract {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-right: 6px solid;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.abstract:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.abstract-he {
    border-right-color: var(--primary-color);
}

.abstract-en {
    border-right-color: var(--secondary-color);
    direction: ltr;
    text-align: left;
}

.abstract-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--light-gray);
}

.abstract-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-top: 0;
    color: var(--dark-color);
}

.abstract-title i {
    color: inherit;
}

.abstract-body p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Table of Contents */
.toc-section {
    margin: 3rem 0;
}

.toc-container {
    background: linear-gradient(to left, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border: 1px solid #dee2e6;
}

.toc-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.toc-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    margin-top: 0;
    color: var(--primary-color);
}

.toc-subtitle {
    color: var(--gray-color);
    font-style: italic;
    margin-top: -0.5rem;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.toc-list {
    list-style-type: none;
}

.toc-item {
    margin-bottom: 0.8rem;
    position: relative;
    padding-right: 1.2rem;
}

.toc-item:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0.9rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.toc-link {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-radius: var(--border-radius-sm);
}

.toc-link:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
    background-color: rgba(0, 86, 179, 0.05);
    padding-right: 0.75rem;
}

.toc-link.active {
    color: var(--primary-color);
    font-weight: bold;
    background-color: rgba(0, 86, 179, 0.1);
    padding-right: 0.75rem;
}

.toc-link i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* Content Sections */
.content-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border-top: 5px solid var(--primary-color);
    transition: var(--transition);
}

.content-section:hover {
    box-shadow: var(--box-shadow-lg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.section-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.section-icon {
    background-color: var(--light-color);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Info Cards */
.info-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 1.5rem 0;
    border: 1px solid var(--light-gray);
}

.info-card-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 1.5rem;
}

.info-card-header h3 {
    color: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card-body {
    padding: 1.5rem;
}

/* Feature Lists */
.feature-list {
    list-style-type: none;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-icon {
    background-color: var(--primary-color);
    color: var(--white);
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-content p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

/* DCN Notes */
.dcn-note {
    background-color: #f0f7ff;
    border-right: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 8px rgba(0, 86, 179, 0.1);
}

.dcn-note-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dcn-note-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.dcn-note-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.dcn-note-body p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* Insurance Cards */
.insurance-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.insurance-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insurance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.insurance-header {
    color: var(--white);
    padding: 1.2rem 1.5rem;
}

.insurance-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.insurance-mandatory {
    background: linear-gradient(to left, #dc3545, #c82333);
}

.insurance-comprehensive {
    background: linear-gradient(to left, #28a745, #1e7e34);
}

.insurance-third-party {
    background: linear-gradient(to left, #ffc107, #e0a800);
}

.insurance-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.insurance-features {
    list-style-type: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.insurance-features li {
    margin-bottom: 0.8rem;
    padding-right: 0.5rem;
}

.insurance-features li:last-child {
    margin-bottom: 0;
}

.insurance-suitability {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    border-right: 3px solid var(--primary-color);
}

.insurance-suitability h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.insurance-suitability h4 i {
    color: var(--secondary-color);
}

.insurance-suitability p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Comparison Table */
.comparison-title {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-color);
}

.table-container {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    min-width: 700px;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.2rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    border: 1px solid var(--primary-dark);
}

.comparison-table td {
    padding: 1.2rem;
    border: 1px solid var(--light-gray);
    text-align: center;
    vertical-align: middle;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--light-color);
}

.comparison-table tr:hover {
    background-color: rgba(0, 86, 179, 0.05);
}

.checkmark {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.xmark {
    color: var(--danger-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-row {
    background-color: rgba(255, 193, 7, 0.1) !important;
    font-weight: bold;
}

.recommendation-row {
    background-color: rgba(0, 86, 179, 0.1) !important;
    font-weight: bold;
}

/* Criteria Container */
.criteria-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.criterion-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.criterion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.criterion-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.criterion-content h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.criterion-content p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

/* Price Factors */
.price-factors {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.price-factor {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.price-factor:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.factor-header {
    background: linear-gradient(to left, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.factor-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.factor-weight {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.factor-body {
    padding: 1.2rem 1.5rem;
}

.factor-body p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Price Example */
.price-example {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.price-example h3 {
    margin-top: 0;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-color);
}

.example-container {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    border: 1px solid var(--light-gray);
}

.example-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.example-label {
    color: var(--dark-color);
}

.example-value {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: bold;
}

.example-breakdown {
    border-top: 1px solid var(--light-gray);
    padding-top: 1.5rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--light-gray);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item.total {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
}

.breakdown-label {
    color: var(--dark-gray);
}

.breakdown-value {
    font-weight: bold;
    color: var(--dark-color);
}

.breakdown-value.positive {
    color: var(--success-color);
}

.breakdown-value.negative {
    color: var(--danger-color);
}

.example-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--light-gray);
    color: var(--gray-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.example-note i {
    color: var(--info-color);
}

/* Tips Container */
.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tip-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--accent-color);
}

.tip-header {
    background: linear-gradient(to left, var(--accent-color), var(--accent-dark));
    color: var(--dark-color);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tip-number {
    background-color: var(--white);
    color: var(--dark-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tip-header h3 {
    color: var(--dark-color);
    margin: 0;
    font-size: 1.2rem;
}

.tip-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tip-body p {
    flex-grow: 1;
    margin-bottom: 1.2rem;
}

.tip-savings {
    background-color: rgba(255, 193, 7, 0.1);
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: bold;
    color: var(--dark-color);
    border-right: 3px solid var(--accent-color);
}

.tip-savings i {
    color: var(--accent-dark);
    font-size: 1.2rem;
}

/* Process Timeline */
.process-timeline {
    margin: 2.5rem 0;
    position: relative;
    padding-right: 2rem;
}

.process-timeline:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.process-step {
    margin-bottom: 2.5rem;
    position: relative;
    padding-right: 3rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:before {
    content: '';
    position: absolute;
    right: -2rem;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.step-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.step-body {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-right: 3px solid var(--primary-color);
}

.step-body ul {
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.step-body li {
    margin-bottom: 0.5rem;
}

.step-tip {
    background-color: rgba(255, 193, 7, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-right: 3px solid var(--accent-color);
}

.step-tip i {
    color: var(--accent-dark);
    margin-top: 0.2rem;
}

.step-tip strong {
    color: var(--dark-color);
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.document-item {
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.document-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.document-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.documents-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

/* FAQ Section */
.faq-container {
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--light-color);
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(0, 86, 179, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-question h3 i {
    color: var(--primary-color);
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 1.5rem;
    background-color: var(--white);
    border-top: 1px solid var(--light-gray);
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul, .faq-answer ol {
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.comparison-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.comparison-option {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
}

.comparison-option h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.comparison-option ul {
    margin-right: 1.2rem;
    margin-bottom: 0;
}

.comparison-option li {
    margin-bottom: 0.5rem;
}

/* Related Articles */
.related-articles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.article-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 1.2rem;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
    border-top-color: var(--primary-color);
}

.article-icon {
    background-color: var(--secondary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.article-content {
    flex-grow: 1;
}

.article-content h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.article-content p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 1rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* CTA Section */
.cta-section {
    margin: 4rem 0;
}

.cta-container {
    background: linear-gradient(to left, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-container:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cta-title {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.cta-benefits {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.cta-benefits h3 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.benefit-icon {
    background-color: var(--white);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-content p {
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.cta-stats {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-callout {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.cta-callout p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cta-callout p:last-child {
    margin-bottom: 0;
}

.cta-emphasis {
    font-size: 1.3rem !important;
    font-weight: bold;
    color: var(--accent-color) !important;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    min-width: 250px;
    justify-content: center;
    text-align: right;
    border: 2px solid transparent;
}

.cta-button i {
    font-size: 1.5rem;
}

.cta-button span {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.cta-button small {
    font-weight: normal;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.cta-secondary {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.cta-secondary:hover {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.cta-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.cta-whatsapp:hover {
    background-color: transparent;
    color: #25D366;
    border-color: #25D366;
    transform: translateY(-3px);
}

.cta-guarantee {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    backdrop-filter: blur(5px);
}

.guarantee-icon {
    background-color: var(--white);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-content h4 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.guarantee-content p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    margin: 0 -20px;
    padding: 0 20px;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--accent-color);
}

.footer-tagline {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    min-width: 180px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column ul {
    list-style-type: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
    padding-right: 5px;
}

.footer-bottom {
    text-align: center;
}

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: right;
}

.footer-disclaimer p {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-disclaimer i {
    color: var(--accent-color);
    margin-left: 0.5rem;
}

.footer-copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-address {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-address i {
    margin-left: 0.5rem;
    color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .insurance-types, .criteria-container, .price-factors, .tips-container, .benefits-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .related-articles {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }
    
    .brand-header, .footer {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .brand-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .section-icon {
        align-self: flex-start;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-icon {
        align-self: flex-start;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
    
    .footer-column {
        min-width: 150px;
    }
    
    .footer-address {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .cta-container {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .content-section, .abstract, .toc-container {
        padding: 1.5rem;
    }
    
    .cta-container {
        padding: 1.5rem;
    }
    
    .insurance-types, .criteria-container, .price-factors, .tips-container, .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .related-articles {
        grid-template-columns: 1fr;
    }
    
    .comparison-box {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .cta-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        padding-right: 1.5rem;
    }
    
    .process-step {
        padding-right: 2rem;
    }
    
    .process-step:before {
        right: -1.5rem;
        width: 30px;
        height: 30px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeInUp 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .brand-header, .cta-section, .footer, .back-to-top, .cta-buttons, .toc-container, .faq-toggle {
        display: none !important;
    }
    
    body {
        max-width: 100%;
        padding: 0;
        margin: 0;
        font-size: 12pt;
    }
    
    .content-section, .abstract {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
    
    a {
        color: #000 !important;
        text-decoration: none !important;
    }
    
    .toc-link::after {
        content: " (עמוד " attr(data-page) ")";
    }
    
    h1, h2, h3, h4 {
        page-break-after: avoid;
    }
    
    p, ul, ol {
        page-break-inside: avoid;
    }
}/* End custom CSS */