.elementor-1874 .elementor-element.elementor-element-fefd245{--display:flex;}/* Start custom CSS *//* קובץ עיצוב ראשי - style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    direction: rtl;
    background: linear-gradient(145deg, #fff9f0 0%, #fdefe4 100%);
    color: #2d3e4f;
    line-height: 1.7;
    padding: 30px 20px;
    min-height: 100vh;
}

.article-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.article-card {
    background: #ffffff;
    border-radius: 48px 48px 32px 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 60px 70px;
    border: 1px solid rgba(255, 200, 150, 0.3);
}

@media (max-width: 700px) {
    .article-card {
        padding: 35px 25px;
        border-radius: 32px;
    }
}

/* כותרת */
.article-header {
    text-align: center;
    margin-bottom: 45px;
}

.article-header h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1e2b3a;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(255, 100, 50, 0.1);
}

@media (max-width: 600px) {
    .article-header h1 {
        font-size: 2.2rem;
    }
}

.header-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #ff7b5c, #ff4d6d);
    margin: 0 auto 20px;
    border-radius: 10px;
}

.subhead {
    font-size: 1.2rem;
    color: #4a5e71;
    background: #fff3e9;
    padding: 25px 30px;
    border-radius: 50px;
    border: 1px solid #ffdec9;
    box-shadow: 0 4px 10px rgba(255, 120, 60, 0.1);
}

/* כותרות פנימיות */
h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2b3b4c;
    margin: 50px 0 20px;
    position: relative;
    padding-bottom: 8px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background: #ff6f4a;
    border-radius: 5px;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #3a4e62;
    margin: 30px 0 15px;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff4d6d;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.4rem; }
}

/* פסקאות */
p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: #2b3e4f;
}

/* רשימה מעוצבת */
.styled-list {
    list-style: none;
    padding-right: 0;
    margin: 25px 0;
}

.styled-list li {
    margin-bottom: 18px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.styled-list i {
    color: #ff6f4a;
    font-size: 1.4rem;
    width: 28px;
    margin-top: 3px;
}

/* טיפ גריד */
.tip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 35px 0;
}

@media (max-width: 600px) {
    .tip-grid {
        grid-template-columns: 1fr;
    }
}

.tip-item {
    background: #f9fcff;
    padding: 25px 20px;
    border-radius: 24px;
    border: 1px solid #ffdec9;
    box-shadow: 0 6px 14px rgba(255, 140, 0, 0.06);
    transition: transform 0.2s ease;
}

.tip-item:hover {
    transform: translateY(-4px);
    border-color: #ffae7a;
}

.tip-number {
    background: #ff6f4a;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    box-shadow: 0 5px 0 #c43e1e;
}

.tip-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tip-item p {
    font-size: 0.95rem;
    color: #3f5567;
    margin-bottom: 0;
}

/* יתרונות וחסרונות */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 600px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

.pros, .cons {
    padding: 25px;
    border-radius: 24px;
}

.pros {
    background: #e8f7f0;
    border: 1px solid #a0e0c0;
}

.cons {
    background: #ffe9e9;
    border: 1px solid #ffb0b0;
}

.pros h3, .cons h3 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros ul, .cons ul {
    padding-right: 20px;
}

.pros li, .cons li {
    margin-bottom: 10px;
}

/* תיבת אזהרה */
.warning-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 20px;
    padding: 20px 25px;
    margin: 30px 0;
}

.warning-box i {
    color: #ffaa00;
    font-size: 1.5rem;
    margin-left: 10px;
}

/* טיפים */
.tips-list {
    margin: 30px 0;
}

.tip-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: #faf8f6;
    border-radius: 40px;
    border: 1px solid #f0e2d8;
}

.tip-row.example {
    background: #fff4e0;
    border-right: 5px solid #ffaa33;
}

.tip-badge {
    background: #ff4d6d;
    color: white;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 4px 0 #b1324a;
}

.tip-row.example .tip-badge {
    background: #ffaa33;
    box-shadow: 0 4px 0 #b97f1a;
}

.tip-row p {
    margin: 0;
    font-size: 1.1rem;
}

/* תכונות */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature {
    text-align: center;
    padding: 25px 15px;
    background: #fcf8f5;
    border-radius: 32px;
    border: 1px solid #f0d9cc;
}

.feature i {
    color: #ff6f4a;
    margin-bottom: 15px;
}

.feature h4 {
    color: #2b3b4c;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.95rem;
    color: #4f6377;
}

/* רשימה ממוספרת */
.numbered-list {
    padding-right: 25px;
    margin: 25px 0;
}

.numbered-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* בלוקי המלצות */
.testimonial-block {
    background: #2b3b4c;
    color: #f7f0e6;
    padding: 30px 35px;
    border-radius: 70px 70px 70px 20px;
    margin: 30px 0;
    font-size: 1.2rem;
    border: 1px solid #ffb08c;
    box-shadow: 0 10px 0 #1d2a35;
}

.testimonial-block p {
    color: #fce9da;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-block cite {
    display: block;
    color: #ffbc9a;
    font-weight: 400;
    font-size: 1rem;
}

/* שאלות נפוצות */
.faq-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ffd0b3;
}

.faq-item h4 {
    color: #1e2b3a;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
    color: #4a5e71;
}

/* משאבים */
.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.resource-list a {
    color: #ff4d6d;
    text-decoration: none;
    font-weight: 500;
}

.resource-list a:hover {
    text-decoration: underline;
}

/* CTA */
.cta-mini {
    background: linear-gradient(145deg, #fff3eb, #ffe7db);
    padding: 25px 30px;
    border-radius: 60px;
    border: 1px dashed #ff8a5c;
    margin: 35px 0;
    font-size: 1.2rem;
    text-align: center;
}

.cta-section {
    background: #fcf0e8;
    padding: 40px 30px;
    border-radius: 60px;
    margin: 50px 0;
}

.cta-final {
    background: linear-gradient(145deg, #ffefe5, #ffe2d4);
    padding: 50px 40px;
    border-radius: 80px;
    margin: 60px 0;
    text-align: center;
    border: 2px solid #ff9f7a;
}

.big-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1e2b3a;
    margin: 30px 0;
}

.button-container {
    margin: 30px 0 15px;
}

.cta-button {
    background: #ff4d6d;
    color: white;
    padding: 18px 50px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 12px 0 #b1324a;
    transition: all 0.1s ease;
    border: 1px solid #ffd0b3;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #ff3355;
    transform: translateY(-4px);
    box-shadow: 0 16px 0 #b1324a;
}

.cta-button:active {
    transform: translateY(8px);
    box-shadow: 0 4px 0 #b1324a;
}

.small-note {
    color: #5f6f80;
    font-size: 1rem;
}

/* פוטר */
.article-footer {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 2px solid #ffe2d0;
    text-align: center;
    color: #6d7e8f;
    font-size: 0.9rem;
}

/* עיצובים כלליים */
strong {
    color: #ff4d6d;
    font-weight: 700;
}

/* התאמה למובייל */
@media (max-width: 500px) {
    .tip-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cta-final, .cta-section {
        padding: 30px 20px;
        border-radius: 40px;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .testimonial-block {
        padding: 20px 15px;
        border-radius: 40px 40px 40px 15px;
    }
    
    .feature {
        padding: 20px 10px;
    }
}/* End custom CSS */