        @import url('https://fonts.googleapis.com/css2?family=Alef:wght@400;700&family=Assistant:wght@300;400;500;600;700;800&display=swap');
        
        :root {
            --primary: #c82e63; /* כהה יותר */
            --primary-dark: #d63e6b;
            --primary-light: #ffd4e0;
            --secondary: #7f53ac;
            --dark: #1a1a2e;
            --light: #ffffff;
            --gray: #f8f9fa;
            --text: #3e3e3e;
            --text-light: #4a4a4a;
            --accent-gradient: linear-gradient(135deg, #e95f8a, #9c69cc);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-dark: 0 15px 40px rgba(0, 0, 0, 0.15);
            --border-radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Assistant', sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
            font-weight: 400;
            overflow-x: hidden;
                padding-top: 70px; /* גובה התפריט */

        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        
        h2 {
            font-size: 2.5rem;
            position: relative;
            margin-bottom: 2.5rem;
        }
        
        h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            bottom: -15px;
            right: 0;
            background: var(--accent-gradient);
        }
        
        h2.centered:after {
            right: 50%;
            transform: translateX(50%);
        }
        
        h3 {
            font-size: 1.8rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        
        .text-gradient {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        p a {
  text-decoration: underline;
  color: var(--primary-dark);
}

        .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-align: center;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary {
            background: var(--accent-gradient);
            color: var(--light);
            border: none;
            box-shadow: 0 8px 15px rgba(233, 95, 138, 0.2);
        }
        
        .btn-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(135deg, #9c69cc, #e95f8a);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .btn-primary:hover:before {
            width: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(233, 95, 138, 0.3);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: var(--light);
            transform: translateY(-5px);
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
            padding: 20px 0;
            background-color: transparent;
        }
        
        .header.scrolled {
            background-color: var(--light);
            box-shadow: var(--shadow);
            padding: 15px 0;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: 800;
        }
        
        .logo img {
            height: 40px;
            margin-left: 10px;
        }
        
        .nav {
            display: flex;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            margin-left: 40px;
        }
        
        .nav-link {
            margin: 0 15px;
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--accent-gradient);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            padding-top: 100px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), url('https://images.unsplash.com/photo-1612209246511-5c7dfdfbd875?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
            overflow: hidden;
        }
        
        .hero-content {
            width: 50%;
            animation: fadeInUp 1s ease forwards;
        }
        
        .hero-images {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        
        .floating-image {
            position: absolute;
            border-radius: 10px;
            box-shadow: var(--shadow);
            opacity: 0.9;
        }
        
        .image-1 {
            width: 250px;
            height: 350px;
            top: 20%;
            right: 10%;
            animation: float 6s ease-in-out infinite;
        }
        
        .image-2 {
            width: 200px;
            height: 300px;
            bottom: 15%;
            right: 25%;
            animation: float 8s ease-in-out infinite 1s;
        }
        
        .image-3 {
            width: 180px;
            height: 250px;
            top: 35%;
            right: 30%;
            animation: float 7s ease-in-out infinite 0.5s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--gray);
            position: relative;
            overflow: hidden;
        }
        
        .about-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }
        
        .about-image {
            width: 45%;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-dark);
            transform: perspective(1000px) rotateY(-10deg);
            transition: all 0.5s ease;
        }
        
        .about-image:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-content {
            width: 50%;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .feature-icon {
            min-width: 50px;
            height: 50px;
            background: var(--accent-gradient);
            color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-top: 5px;
        }
        
        .feature-text h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        
        .feature-text p {
            font-size: 1rem;
            margin-bottom: 0;
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--light);
            position: relative;
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--light);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-dark);
        }
        
        .service-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
            position: relative;
        }
        
        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .service-price {
            position: absolute;
            top: -20px;
            left: 25px;
            background: var(--accent-gradient);
            color: var(--light);
            border-radius: 50px;
            padding: 5px 15px;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(233, 95, 138, 0.3);
        }
        
        .service-list {
            list-style: none;
            margin-top: 20px;
        }
        
        .service-list li {
            margin-bottom: 10px;
            padding-right: 25px;
            position: relative;
            color: var(--text-light);
        }
        
        .service-list li:before {
            content: '✓';
            position: absolute;
            right: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: var(--gray);
            position: relative;
        }
        
        .gallery-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            border-radius: var(--border-radius);
            overflow: hidden;
            position: relative;
            height: 300px;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(233, 95, 138, 0.9), rgba(156, 105, 204, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .gallery-overlay i {
            color: var(--light);
            font-size: 2.5rem;
            transform: scale(0);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-item:hover .gallery-overlay i {
            transform: scale(1);
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background-color: var(--light);
            position: relative;
        }
        
        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: var(--gray);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-dark);
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 5rem;
            font-family: serif;
            color: var(--primary-light);
            line-height: 1;
        }
        
        .testimonial-text {
            margin-bottom: 25px;
            font-style: italic;
            color: var(--text);
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--primary);
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .author-info p {
            font-size: 0.9rem;
            margin-bottom: 0;
            color: var(--primary);
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: var(--gray);
            position: relative;
        }
        
        .contact-inner {
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            gap: 40px;
        }
        
        .contact-form-container {
            width: 60%;
            background-color: var(--light);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        .contact-form h3 {
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e1e1e1;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(233, 95, 138, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .contact-info {
            width: 35%;
            background: var(--accent-gradient);
            border-radius: var(--border-radius);
            padding: 40px;
            color: var(--light);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .contact-info h3 {
            margin-bottom: 25px;
            color: var(--light);
        }
        
        .contact-info p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 25px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--light);
        }
        
        .contact-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: #a9b6d3;
;
        }
        
        .contact-text p, .contact-text a {
            color: #a9b6d3;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-bottom: 0;
        }
        
        .contact-text a:hover {
            color: #a9b6d3;

        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .social-link:hover {
            background-color: var(--light);
            color: var(--primary);
            transform: translateY(-5px);
        }
        
        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: var(--accent-gradient);
            color: var(--light);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1600897666282-42445b7bbd51?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
            opacity: 0.1;
        }
        
        .cta-inner {
            position: relative;
            z-index: 1;
        }
        
        .cta h2 {
            color: var(--light);
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .cta h2:after {
            display: none;
        }
        
        .cta p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .cta-btn {
            background-color: var(--light);
            color: var(--primary);
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            display: inline-block;
        }
        
        .cta-btn:hover {
            background-color: var(--dark);
            color: var(--light);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 80px 0 30px;
        }
        
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .footer-col {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-logo a {
            color: var(--light);
            font-size: 2rem;
            font-weight: 800;
            text-decoration: none;
        }
        
        .footer-logo span {
            color: var(--primary);
        }
        
        .footer-about {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 25px;
        }
        
        .footer-heading {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--light);
            position: relative;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            bottom: -10px;
            right: 0;
            background: var(--primary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(-8px);
        }
        
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.947);
        }
        .footer-contact-item p{
            color: rgba(255, 255, 255, 0.947);

        }
        
        .footer-contact-icon {
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .footer-social-link:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
        .footer-bottom a{
            color: rgba(255, 255, 255, 0.947);
        
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: rgba(255, 255, 255, 0.947);
            text-decoration: none;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent-gradient);
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(233, 95, 138, 0.3);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
            bottom: 30px;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(233, 95, 138, 0.4);
        }

        /* Simple Mobile Responsive Rules */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: var(--light);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                z-index: 1000;
                list-style: none;
                margin: 0;
                padding: 0;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .nav-link {
                font-size: 1.5rem;
                margin: 0;
            }
            
            .mobile-toggle {
                display: block;
                z-index: 1001;
            }
            
            .nav .btn-primary {
                display: none;
            }
            
            .hero {
                min-height: 100vh;
                padding: 80px 0 40px;
                text-align: center;
            }
            
            .hero-content {
                width: 100%;
                padding: 0 15px;
            }
            
            .hero-images,
            .floating-image {
                display: none;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            p {
                font-size: 1rem;
            }
            
            .about-inner {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }
            
            .about-content,
            .about-image {
                width: 100%;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-inner {
                flex-direction: column;
                gap: 30px;
            }
            
            .contact-form-container,
            .contact-info {
                width: 100%;
                padding: 30px 20px;
            }
            
            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 30px;
            }
            
            .footer-heading:after {
                right: 50%;
                transform: translateX(50%);
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .cta h2 {
                font-size: 2rem;
            }
            
            .cta p {
                font-size: 1rem;
                padding: 0 20px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            
            h1 {
                font-size: 1.6rem;
            }
            
            h2 {
                font-size: 1.4rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .service-content {
                padding: 20px 15px;
            }
            
            .testimonial-card {
                padding: 20px;
            }
            
            .cta h2 {
                font-size: 1.6rem;
            }
        }
          .Accessibility-Statement{
    color: #a9b6d3;
    font-weight: bold;
  }
  .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}