/* Start custom CSS for html, class: .elementor-element-fcdcf48 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        /* Header Styles */
        .header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #2c5aa0;
        }

        .contact-bar {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .cta-phone,
        .cta-whatsapp {
            color: white;
            padding: 12px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            font-size: 16px;
        }

        .cta-phone {
            background: #2c5aa0;
        }

        .cta-phone:hover {
            background: #1e3a8a;
            transform: translateY(-2px);
        }

        .cta-whatsapp {
            background: #25d366;
        }

        .cta-whatsapp:hover {
            background: #1ea952;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
            color: white;
            text-align: center;
            padding: 80px 20px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero p {
            font-size: 22px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .urgency-banner {
            background: #2c5aa0;
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin: 30px auto;
            max-width: 600px;
            font-size: 1.2em;
            font-weight: bold;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        .cta-button {
            background: #2c5aa0;
            color: white;
            padding: 20px 40px;
            border: none;
            border-radius: 50px;
            font-size: 21px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 30px;
        }

        .cta-button:hover {
            background: #1e3a8a;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(44, 90, 160, 0.4);
        }

        /* Benefits Section */
        .benefits {
            padding: 80px 20px;
            background: white;
        }

        .benefits-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefits h2 {
            text-align: center;
            font-size: 40px;
            margin-bottom: 50px;
            color: #2c5aa0;
            font-weight: 700;
        }

        .benefits-intro {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 50px;
            text-align: center;
            border-right: 5px solid #2c5aa0;
        }

        .benefits-intro h3 {
            color: #2c5aa0;
            margin-bottom: 20px;
            font-size: 29px;
            font-weight: 600;
        }

        .benefits-intro p {
            font-size: 19px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
        }

        .benefits-highlight {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin-top: 25px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            border: 2px solid #2c5aa0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(277px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 2px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: #2c5aa0;
        }

        .benefit-icon {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #2c5aa0;
            font-weight: 600;
        }

        .benefit-card p {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .testimonials-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials h2 {
            text-align: center;
            font-size: 40px;
            margin-bottom: 20px;
            color: #2c5aa0;
            font-weight: 700;
        }

        .testimonials p {
            text-align: center;
            font-size: 20px;
            color: #666;
            margin-bottom: 50px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .testimonial-card {
            background: white;
            padding: 25px 20px 20px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s;
            min-height: 180px;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card::before {
            content: '"';
            font-size: 50px;
            color: #2c5aa0;
            position: absolute;
            top: -15px;
            right: 15px;
            font-family: serif;
            opacity: 0.3;
        }

        .testimonial-text {
            font-size: 14px;
            line-height: 1.4;
            color: #333;
            margin-bottom: 15px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .testimonial-author {
            font-size: 16px;
            font-weight: 600;
            color: #2c5aa0;
            margin-bottom: 5px;
            margin-top: auto;
        }

        .testimonial-location {
            font-size: 14px;
            color: #666;
        }

        /* Contact Form Section */
        .contact-form {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
            color: white;
            text-align: center;
            padding: 80px 20px;
        }

        .contact-form-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form h2 {
            font-size: 40px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .contact-form p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .form-container {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .form-group {
            margin-bottom: 20px;
            text-align: right;
        }

        .form-group label {
            display: block;
            color: #2c5aa0;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #2c5aa0;
            outline: none;
        }

        .form-button {
            background: #2c5aa0;
            color: white;
            padding: 20px 40px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }

        .form-button:hover {
            background: #1e3a8a;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(44, 90, 160, 0.4);
        }

        .form-note {
            margin-top: 20px;
            font-size: 14px;
            opacity: 0.8;
            color: rgb(14, 14, 14);
        }

        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25d366;
            color: white;
            padding: 15px 20px;
            border-radius: 50px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s;
            animation: pulse-whatsapp 2s infinite;
        }

        .floating-whatsapp:hover {
            background: #1ea952;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
            color: white;
        }

        @keyframes pulse-whatsapp {
            0% {
                box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            }

            50% {
                box-shadow: 0 5px 25px rgba(37, 211, 102, 0.8);
            }

            100% {
                box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            }
        }

        .whatsapp-icon {
            font-size: 24px;
        }

        .whatsapp-text {
            font-weight: bold;
            font-size: 16px;
        }

        /* Show More Testimonials Button */
        #show-more-testimonials {
            background: #2c5aa0;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 40px;
        }

        #show-more-testimonials:hover {
            background: #1e3a8a;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(44, 90, 160, 0.4);
        }

        /* Show less button hover effect */
        #show-more-testimonials[style*="background: #dc3545"]:hover {
            background: #c82333 !important;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
        }

        .hidden-testimonial {
            display: none;
        }

        /* Din.co.il link hover effect */
        .testimonials a:hover {
            color: #1e3a8a !important;
            text-decoration: underline !important;
        }

        /* Practice Areas Section */
        .practice-areas {
            padding: 80px 20px;
            background: white;
        }

        .practice-areas-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .practice-areas h2 {
            text-align: center;
            font-size: 40px;
            margin-bottom: 20px;
            color: #2c5aa0;
            font-weight: 700;
        }

        .practice-areas p {
            text-align: center;
            font-size: 20px;
            color: #666;
            margin-bottom: 50px;
        }

        .practice-areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .practice-area-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .practice-area-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: #2c5aa0;
            background: white;
        }

        .practice-area-icon {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .practice-area-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c5aa0;
            font-weight: 600;
        }

        .practice-area-card p {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            margin: 0;
        }

        /* About Section */
        .about {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: #2c5aa0;
            font-weight: 700;
        }

        .about-text p {
            font-size: 18px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
        }

        .about-text p:last-child {
            margin-bottom: 0;
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .about-image img:hover {
            transform: scale(1.02);
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) and (min-width: 769px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .testimonial-card {
                padding: 20px;
                min-height: 180px;
            }

            .testimonial-text {
                font-size: 15px;
                line-height: 1.4;
            }
        }
        
        
        .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://www.shawlaw.co.il/wp-content/uploads/2025/08/עיצוב-ללא-שם-2-2.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .contact-bar {
                flex-direction: row;
                gap: 10px;
                justify-content: center;
            }

            .cta-phone,
            .cta-whatsapp {
                padding: 8px 15px;
                font-size: 11px;
            }

            .hero h1 {
                font-size: 25px;
            }

            .hero p {
                font-size: 18px;
            }

            .benefits h2,
            .testimonials h2,
            .contact-form h2,
            .practice-areas h2,
            .about h2 {
                font-size: 30px;
            }

            .benefits-grid,
            .practice-areas-grid {
                grid-template-columns: 1fr;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-text p {
                font-size: 16px;
            }

            .about-image {
                order: -1;
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .testimonial-card {
                padding: 20px 15px 15px 15px;
                min-height: 160px;
            }

            .testimonial-text {
                font-size: 13px;
                line-height: 1.3;
            }

            .testimonial-author {
                font-size: 14px;
            }

            .floating-whatsapp {
                bottom: 15px;
                right: 15px;
                padding: 12px 15px;
            }

            .whatsapp-text {
                display: none;
            }
        }/* End custom CSS */
/* Start custom CSS */.elementor-contact-bar { display: flex; gap: 15px; align-items: center; justify-content: center; } .elementor-cta-phone, .elementor-cta-whatsapp { background: #25d366; color: white; padding: 12px 20px; border-radius: 25px; text-decoration: none; font-weight: bold; transition: all 0.3s; font-size: 16px; } .elementor-cta-phone { background: #2c5aa0; } .elementor-cta-phone:hover { background: #1e3a8a; transform: translateY(-2px); } .elementor-cta-whatsapp:hover { background: #1ea952; transform: translateY(-2px); } .elementor-urgency-banner { background: #2c5aa0; color: white; padding: 15px; border-radius: 10px; margin: 30px auto; max-width: 600px; font-size: 1.2em; font-weight: bold; animation: pulse 2s infinite; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } .elementor-benefits-intro { background: #f8f9fa; padding: 30px; border-radius: 15px; margin-bottom: 50px; text-align: center; border-right: 5px solid #2c5aa0; } .elementor-benefits-intro h3 { color: #2c5aa0; margin-bottom: 20px; font-size: 29px; font-weight: 600; } .elementor-benefits-intro p { font-size: 19px; line-height: 1.8; color: #333; margin-bottom: 20px; } .elementor-benefits-highlight { background: white; padding: 20px; border-radius: 10px; margin-top: 25px; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); border: 2px solid #2c5aa0; } .elementor-benefits-highlight strong { color: #2c5aa0; font-size: 1.2em; } .elementor-benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(277px, 1fr)); gap: 30px; margin-top: 50px; } .elementor-benefit-card { background: #f8f9fa; padding: 30px; border-radius: 15px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; border: 2px solid transparent; } .elementor-benefit-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); border-color: #2c5aa0; } .elementor-benefit-icon { font-size: 3em; margin-bottom: 20px; } .elementor-benefit-card h3 { font-size: 24px; margin-bottom: 15px; color: #2c5aa0; font-weight: 600; } .elementor-benefit-card p { font-size: 16px; line-height: 1.6; color: #333; } .elementor-practice-areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; } .elementor-practice-area-card { background: #f8f9fa; padding: 30px; border-radius: 15px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; border: 2px solid transparent; cursor: pointer; } .elementor-practice-area-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); border-color: #2c5aa0; background: white; } .elementor-practice-area-icon { font-size: 3em; margin-bottom: 20px; } .elementor-practice-area-card h3 { font-size: 22px; margin-bottom: 15px; color: #2c5aa0; font-weight: 600; } .elementor-practice-area-card p { font-size: 16px; line-height: 1.6; color: #333; margin: 0; } .elementor-testimonials-rating { text-align: center; margin-bottom: 30px; background: white; padding: 20px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); } .elementor-rating-score { font-size: 24px; font-weight: bold; color: #2c5aa0; margin-bottom: 10px; } .elementor-rating-link a { color: #2c5aa0; text-decoration: none; font-weight: 600; transition: color 0.3s; } .elementor-rating-link a:hover { color: #1e3a8a; text-decoration: underline; } .elementor-testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; } .elementor-testimonial-card { background: white; padding: 25px 20px 20px 20px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); position: relative; transition: all 0.3s; min-height: 180px; display: flex; flex-direction: column; } .elementor-testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); } .elementor-testimonial-card::before { content: '"'; font-size: 50px; color: #2c5aa0; position: absolute; top: -15px; right: 15px; font-family: serif; opacity: 0.3; } .elementor-testimonial-text { font-size: 14px; line-height: 1.4; color: #333; margin-bottom: 15px; word-wrap: break-word; overflow-wrap: break-word; } .elementor-testimonial-author { font-size: 16px; font-weight: 600; color: #2c5aa0; margin-bottom: 5px; margin-top: auto; } .elementor-testimonial-location { font-size: 14px; color: #666; } .elementor-form-note { margin-top: 20px; font-size: 14px; opacity: 0.8; color: rgb(14, 14, 14); } @media (max-width: 768px) { .elementor-contact-bar { flex-direction: column; gap: 10px; } .elementor-benefits-grid, .elementor-practice-areas-grid { grid-template-columns: 1fr; } .elementor-urgency-banner { font-size: 1em; padding: 12px; } .elementor-testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } .elementor-testimonial-card { padding: 20px 15px 15px 15px; min-height: 160px; } .elementor-testimonial-text { font-size: 13px; line-height: 1.3; } .elementor-testimonial-author { font-size: 14px; } } @media (max-width: 1024px) and (min-width: 769px) { .elementor-testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } .elementor-testimonial-card { padding: 20px; min-height: 180px; } .elementor-testimonial-text { font-size: 15px; line-height: 1.4; } } @media (max-width: 768px) { .elementor-section[data-id="about-section"] .elementor-column:first-child { order: 2; } .elementor-section[data-id="about-section"] .elementor-column:last-child { order: 1; } }/* End custom CSS */