.elementor-587 .elementor-element.elementor-element-1ef4c1c{--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 );text-transform:var( --e-global-typography-text-text-transform );font-style:var( --e-global-typography-text-font-style );text-decoration:var( --e-global-typography-text-text-decoration );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );word-spacing:var( --e-global-typography-text-word-spacing );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 );letter-spacing:var( --e-global-typography-text-letter-spacing );word-spacing:var( --e-global-typography-text-word-spacing );}}@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 );letter-spacing:var( --e-global-typography-text-letter-spacing );word-spacing:var( --e-global-typography-text-word-spacing );}}/* Start custom CSS *//* styles.css - עיצוב מקצועי למאמר טכני על רחפנים */

/* עיצוב כללי */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px;
    background-color: #f5f7fa;
    text-align: right;
}

/* כותרות */
h1 {
    color: #1a5276;
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 4px solid #3498db;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

h2 {
    color: #2c3e50;
    font-size: 2.1em;
    margin-top: 45px;
    margin-bottom: 20px;
    padding-right: 15px;
    border-right: 6px solid #2980b9;
    font-weight: 600;
    position: relative;
}

h2:before {
    content: "";
    position: absolute;
    right: -6px;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #2980b9, #1a5276);
}

h3 {
    color: #1a5276;
    font-size: 1.6em;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-right: 10px;
    border-right: 3px solid #5dade2;
    font-weight: 600;
}

/* פסקאות */
p {
    margin-bottom: 22px;
    text-align: justify;
    font-size: 1.1em;
}

/* רשימות */
ul, ol {
    margin-right: 35px;
    margin-bottom: 30px;
    padding-right: 15px;
}

li {
    margin-bottom: 12px;
    padding-right: 10px;
    position: relative;
}

ul li:before {
    content: "✈";
    position: absolute;
    right: -25px;
    color: #3498db;
    font-size: 0.9em;
}

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
}

ol li:before {
    content: counter(item) ".";
    position: absolute;
    right: -25px;
    color: #3498db;
    font-weight: bold;
}

/* תיבות מיוחדות */
.cta-box {
    background: linear-gradient(135deg, #e8f4fc 0%, #d6eaf8 100%);
    border: 2px solid #3498db;
    border-radius: 12px;
    padding: 30px;
    margin: 50px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
    transition: transform 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, #1a5276, #2c3e50);
    color: white;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(to right, #154360, #1a5276);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.term-box {
    background-color: #f0f8ff;
    border-right: 5px solid #1a5276;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.term {
    font-weight: bold;
    color: #1a5276;
    font-size: 1.1em;
    display: inline-block;
    margin-left: 5px;
}

.note {
    background-color: #fffde7;
    border: 1px solid #ffd54f;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    border-right: 5px solid #ffb300;
    position: relative;
}

.note:before {
    content: "💡";
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 1.5em;
}

.forum-ref {
    color: #1a5276;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px dotted #1a5276;
    transition: all 0.2s;
}

.forum-ref:hover {
    color: #154360;
    border-bottom: 2px solid #154360;
}

.content-cluster {
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border: 1px solid #bbdefb;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* אפקטים נוספים */
* {
    transition: all 0.2s ease;
}

h1, h2, h3 {
    transition: color 0.3s;
}

h2:hover, h3:hover {
    color: #154360;
}

/* עיצוב רספונסיבי */
@media (max-width: 768px) {
    body {
        padding: 15px;
        font-size: 16px;
    }
    
    h1 {
        font-size: 2.2em;
        padding: 0 10px 15px 10px;
    }
    
    h2 {
        font-size: 1.8em;
        margin-top: 35px;
    }
    
    h3 {
        font-size: 1.4em;
    }
    
    .cta-box {
        padding: 20px;
        margin: 35px 0;
    }
    
    .cta-button {
        padding: 14px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    ul, ol {
        margin-right: 25px;
    }
}

/* אנימציות עדינות */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1, h2, h3, p, ul, ol, .cta-box, .term-box, .note, .content-cluster {
    animation: fadeIn 0.8s ease-out;
}

/* הדגשת קוד ומונחים טכניים */
code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #d35400;
    font-size: 0.95em;
    border: 1px solid #e9ecef;
}

/* קישורים כלליים */
a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}/* End custom CSS */