
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-purple: #2d2a7a;
            --accent-yellow: #ffd748;
            --light-purple: #e8ebf9;
            --text-dark: #1a1a2e;
            --white: #ffffff;
            --gradient-start: #3b38a0;
            --gradient-end: #2d2a7a;
        }

        body {
            font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
            background: linear-gradient(135deg, #f5f7ff 0%, #e8ebf9 100%);
            color: var(--text-dark);
        }


.footer-links {
padding: 20px;
  display: flex; /* הופך את הקונטיינר לגמיש */
  gap: 20px;     /* יוצר מרווח שווה של 20 פיקסלים בין הלינקים */
  justify-content: center; /* אופציונלי: ממרכז את הלינקים */
}
        /* Header Navigation */
        .header-nav {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(45, 42, 122, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 85px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 32px;
            font-weight: 900;
            color: var(--primary-purple);
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--primary-purple);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        .nav-menu {
            display: flex;
            gap: 0;
            list-style: none;
            align-items: center;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 16px;
            padding: 30px 20px;
            display: block;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-purple);
        }

        .nav-menu a.active {
            color: var(--primary-purple);
        }

        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 20px;
            left: 20px;
            height: 3px;
            background: var(--primary-purple);
        }

        .dropdown-arrow {
            font-size: 12px;
            margin-right: 5px;
        }

        .search-icon {
            width: 45px;
            height: 45px;
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .search-icon:hover {
            transform: scale(1.1);
        }

        .search-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary-purple);
        }

        /* Hero Section */
        .hero-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
            min-height: calc(100vh - 85px);
        }

        .hero-content h1 {
            font-family: 'Heebo', sans-serif;
            font-size: 72px;
            font-weight: 900;
            color: var(--primary-purple);
            line-height: 1.1;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-content .title-line {
            display: block;
        }

        .hero-content .subtitle {
            font-size: 20px;
            color: var(--text-dark);
            margin-bottom: 50px;
            font-weight: 400;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        /* Categories Grid */
        .categories-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .categories-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-purple);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .category-card {
            background: var(--white);
            border-radius: 16px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(45, 42, 122, 0.08);
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(45, 42, 122, 0.2);
        }

        .category-card:hover::before {
            opacity: 1;
        }

        .category-card:hover .category-icon,
        .category-card:hover .category-name {
            position: relative;
            z-index: 1;
            color: var(--white);
        }

        .category-icon {
            font-size: 48px;
            transition: all 0.4s ease;
        }

        .category-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-purple);
            transition: all 0.4s ease;
        }

        /* Hero Illustration */
        .hero-illustration {
            position: relative;
            animation: fadeInRight 1s ease-out 0.3s both;
        }

        .illustration-container {
            position: relative;
            width: 100%;
            height: 600px;
        }

        .phone-frame {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 350px;
            height: 500px;
            background: linear-gradient(135deg, #5eb3e8 0%, #4a9fd8 100%);
            border-radius: 40px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(45, 42, 122, 0.3);
            z-index: 3;
        }

        .review-card {
            background: var(--white);
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            animation: slideIn 0.5s ease-out backwards;
        }

        .review-card:nth-child(1) { animation-delay: 0.8s; }
        .review-card:nth-child(2) { animation-delay: 1s; }
        .review-card:nth-child(3) { animation-delay: 1.2s; }

        .review-number {
            position: absolute;
            left: -50px;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #b8a3ff 0%, #9b87e8 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(155, 135, 232, 0.4);
        }

        .stars {
            color: var(--accent-yellow);
            font-size: 18px;
            margin-bottom: 8px;
        }

        .review-content {
            height: 40px;
            background: linear-gradient(90deg, #e8ebf9 0%, #d8dcf0 100%);
            border-radius: 8px;
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            animation: float 3s ease-in-out infinite;
        }

        .megaphone {
            top: 10%;
            right: 15%;
            font-size: 48px;
            animation-delay: 0s;
            z-index: 2;
        }

        .thumbs-up {
            top: 15%;
            left: 10%;
            font-size: 36px;
            animation-delay: 0.5s;
        }

        .shopping-cart {
            bottom: 15%;
            right: 5%;
            font-size: 44px;
            animation-delay: 1s;
        }

        .person-left {
            bottom: 20%;
            right: 60%;
            font-size: 120px;
            animation-delay: 0.3s;
            z-index: 4;
        }

        .person-right {
            bottom: 15%;
            left: 5%;
            font-size: 140px;
            animation-delay: 0.7s;
            z-index: 4;
        }

        .plant {
            bottom: 5%;
            left: 15%;
            font-size: 60px;
            animation-delay: 1.2s;
        }

        .chat-bubble {
            top: 40%;
            left: 35%;
            background: var(--accent-yellow);
            width: 140px;
            height: 100px;
            border-radius: 20px;
            position: relative;
            box-shadow: 0 8px 25px rgba(255, 215, 72, 0.4);
            animation: float 3s ease-in-out 0.8s infinite;
            z-index: 2;
        }

        .chat-bubble::before {
            content: '⭐⭐';
            position: absolute;
            top: 15px;
            left: 20px;
            font-size: 20px;
        }

        /* Decorative Dots */
        .dot {
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
        }

        .dot-1 {
            width: 12px;
            height: 12px;
            background: #5eb3e8;
            top: 20%;
            right: 5%;
        }

        .dot-2 {
            width: 8px;
            height: 8px;
            background: var(--primary-purple);
            top: 50%;
            right: 12%;
        }

        .dot-3 {
            width: 10px;
            height: 10px;
            background: var(--accent-yellow);
            bottom: 30%;
            left: 20%;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Articles Section */
        .articles-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .category-row {
            margin-bottom: 80px;
        }

        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 35px;
        }

        .category-header h2 {
            font-family: 'DM Sans', sans-serif;
            font-size: 42px;
            font-weight: 900;
            color: var(--primary-purple);
            margin: 0;
        }

        .view-all-btn {
            background: #4169e1;
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(65, 105, 225, 0.25);
        }

        .view-all-btn:hover {
            background: #3557c7;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(65, 105, 225, 0.35);
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .article-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(45, 42, 122, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(45, 42, 122, 0.15);
        }

        .article-image {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .article-card:hover .article-image img {
            transform: scale(1.08);
        }

        .article-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(45, 42, 122, 0.85);
            color: white;
            padding: 8px 18px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            backdrop-filter: blur(10px);
        }

        .article-content {
            padding: 28px;
        }

        .article-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
            margin: 0;
            transition: color 0.3s ease;
        }

        .article-card:hover .article-title {
            color: var(--primary-purple);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .category-header h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .articles-grid {
                grid-template-columns: 1fr;
            }

            .category-header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .category-header h2 {
                font-size: 32px;
            }
        }

        /* How It Works Section */
        .how-it-works-section {
            background: white;
            padding: 100px 40px;
            margin-top: 80px;
        }

        .how-it-works-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .how-it-works-left {
            padding-right: 40px;
        }

        .section-tag {
            color: #4169e1;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }

        .how-it-works-left h2 {
            font-family: 'DM Sans', sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: var(--primary-purple);
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .how-it-works-left p {
            font-size: 17px;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 50px;
        }

        .illustration-box {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        .illustration-graphic {
            width: 100%;
            max-width: 500px;
            position: relative;
        }

        /* Timeline Steps */
        .timeline-steps {
            position: relative;
        }

        .timeline-step {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
            position: relative;
            animation: fadeInLeft 0.6s ease-out backwards;
        }

        .timeline-step:nth-child(1) { animation-delay: 0.2s; }
        .timeline-step:nth-child(2) { animation-delay: 0.3s; }
        .timeline-step:nth-child(3) { animation-delay: 0.4s; }
        .timeline-step:nth-child(4) { animation-delay: 0.5s; }
        .timeline-step:nth-child(5) { animation-delay: 0.6s; }

        .step-icon-wrapper {
            position: relative;
            flex-shrink: 0;
        }

        .step-icon {
            width: 70px;
            height: 70px;
            background: white;
            border: 4px solid #4169e1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .timeline-step:hover .step-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(65, 105, 225, 0.3);
        }

        .step-icon svg {
            width: 32px;
            height: 32px;
            stroke: #4169e1;
            stroke-width: 3;
        }

        .step-line {
            position: absolute;
            left: 35px;
            top: 70px;
            width: 2px;
            height: calc(100% + 50px);
            background: linear-gradient(180deg, #4169e1 0%, #e8ebf9 100%);
            z-index: 1;
        }

        .timeline-step:last-child .step-line {
            display: none;
        }

        .step-content h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .step-content p {
            font-size: 16px;
            line-height: 1.7;
            color: #4a5568;
            margin: 0;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive for How It Works */
        @media (max-width: 1024px) {
            .how-it-works-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .how-it-works-left {
                padding-right: 0;
                text-align: center;
            }

            .how-it-works-left h2 {
                font-size: 42px;
            }

            .illustration-box {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .how-it-works-section {
                padding: 60px 20px;
            }

            .how-it-works-left h2 {
                font-size: 36px;
            }

            .step-icon {
                width: 60px;
                height: 60px;
            }

            .step-icon svg {
                width: 28px;
                height: 28px;
            }

            .step-content h3 {
                font-size: 20px;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-section {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 56px;
            }

            .categories-grid {
                justify-items: center;
            }

            .illustration-container {
                height: 500px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-content h1 {
                font-size: 42px;
            }

            .categories-grid {
                grid-template-columns: 1fr;
            }
        }

/* עיצוב בסיסי לכפתור ההמבורגר - מוסתר בדסקטופ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-purple);
    border-radius: 2px;
    transition: 0.3s;
}

/* התאמות למובייל בלבד */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex; /* מופיע רק במובייל */
    }

    .nav-wrapper {
        position: fixed;
        top: 85px;
        left: -100%; /* מוסתר מחוץ למסך */
        width: 100%;
        height: calc(100vh - 85px);
        background: white;
        transition: 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-wrapper.active {
        left: 0; /* מחליק פנימה כשלוחצים */
    }

    .nav-menu {
        flex-direction: column;
        padding: 20px;
    }

    .nav-menu li a {
        padding: 15px !important;
        width: 100%;
        display: block;
        border-bottom: 1px solid #eee;
    }
}
  


/* הגדרות בסיס לכפתור - מוסתר בדסקטופ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: #2d2a7a; /* הצבע הסגול שלך */
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* מסך מובייל - עד 768 פיקסלים */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important; /* הכרחי כדי להציג את הכפתור */
    }

    /* תיקון: מניעת הסתרת התפריט המקורית */
    .nav-menu {
        display: none; /* מסתיר את הרשימה הרגילה */
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%; /* מתחיל מחוץ למסך מימין */
        width: 80%; /* רוחב התפריט שיפתח */
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        z-index: 10000;
        padding-top: 100px;
    }

    /* כשהתפריט פתוח */
    .nav-wrapper.active {
        right: 0;
    }

    .nav-wrapper .nav-menu {
        display: flex !important;
        flex-direction: column;
        list-style: none;
        padding: 20px;
    }

    .nav-wrapper .nav-menu li a {
        color: #2d2a7a !important;
        font-size: 1.2rem;
        padding: 15px;
        display: block;
        border-bottom: 1px solid #f0f0f0;
        text-align: right;
    }
}
.no-style-link {
    text-decoration: none; /* מסיר קו תחתון */
    color: inherit;        /* לוקח את הצבע מהאלמנט האבא במקום להיות כחול */
    display: block;       /* גורם לקישור להתנהג כמו קופסה שתופסת את כל השטח */
}