* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #F5FBF5 0%, #F0F8F0 30%, #EBF5EB 70%, #E8F3E8 100%);
            background-attachment: fixed;
            min-height: 100vh;
            color: #2c2c2c;
            line-height: 1.6;
            position: relative;
        }

        /* Pokemon-themed background pattern - very light green tones */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(245, 251, 245, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(232, 243, 232, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(240, 248, 240, 0.15) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Language toggle */
        .language-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            gap: 10px;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 12px;
            border-radius: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
        }

        .language-toggle button {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 50%;
            transition: all 0.3s ease;
            opacity: 0.6;
        }

        .language-toggle button:hover {
            opacity: 1;
            transform: scale(1.1);
        }

        .language-toggle button.active {
            opacity: 1;
            background: rgba(200, 230, 200, 0.5);
            transform: scale(1.15);
        }

        .header {
            text-align: center;
            padding: 40px 20px;
            color: #2c2c2c;
            position: relative;
            direction: ltr; /* Center alignment works better with LTR */
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .header .lang-he {
            direction: rtl;
            text-align: center;
        }
        
        .header .lang-en {
            direction: ltr;
            text-align: center;
        }

        .logo {
            max-width: 200px;
            height: auto;
            margin-bottom: 20px;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
        }

        .header h1 {
            font-size: 3em;
            margin-bottom: 20px;
            color: #7A9A7A;
            text-shadow: 1px 1px 3px rgba(255,255,255,0.5);
        }

        .header h1.lang-he {
            display: block;
        }

        .header h1.lang-en {
            display: none;
        }

        .header p {
            font-size: 1.3em;
            margin-bottom: 10px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #3c3c3c;
            text-align: center;
        }


        .social-links {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: stretch;
            gap: 20px;
            margin: 50px auto;
            direction: ltr; /* Always left-to-right for button order */
            padding: 0 20px;
            max-width: 800px;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            background: rgba(255, 255, 255, 0.98);
            color: #333;
            padding: 25px 30px;
            border-radius: 16px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            width: 100%;
            backdrop-filter: blur(10px);
            direction: ltr; /* Always LTR for button content */
            border: 1px solid rgba(0,0,0,0.05);
        }

        .social-btn-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex: 1;
            text-align: center;
        }

        .social-btn-title {
            font-size: 1.6em;
            font-weight: 700;
            color: #2c2c2c;
            margin: 0;
        }

        .social-btn-desc {
            font-size: 1.1em;
            font-weight: 400;
            color: #666;
            margin: 0;
        }

        .social-btn-icon {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-btn-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            background: white;
        }


        .cta-section {
            text-align: center;
            padding: 40px 20px;
            color: #2c2c2c;
            direction: ltr; /* Center alignment */
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-section .lang-he {
            direction: rtl;
        }
        
        .cta-section .lang-en {
            direction: ltr;
        }

        .cta-section h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #7A9A7A;
        }

        .disclaimer {
            background: rgba(245, 251, 245, 0.8);
            border-radius: 12px;
            padding: 30px;
            margin: 40px auto;
            color: #3c3c3c;
            font-size: 0.9em;
            line-height: 1.8;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(200, 230, 200, 0.4);
            direction: ltr; /* Container always LTR */
            width: 100%;
            max-width: 800px;
            text-align: center;
        }
        
        .disclaimer .lang-he {
            direction: rtl;
            text-align: center;
        }
        
        .disclaimer .lang-en {
            direction: ltr;
            text-align: center;
        }

        .disclaimer h3 {
            margin-bottom: 15px;
            font-size: 1.2em;
            text-align: center;
        }

        .disclaimer p {
            margin-bottom: 10px;
            text-align: center;
        }

        .footer {
            text-align: center;
            padding: 30px 20px;
            color: #7A9A7A;
            font-size: 0.9em;
            direction: ltr; /* Center alignment */
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .footer .lang-he {
            direction: rtl;
        }
        
        .footer .lang-en {
            direction: ltr;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #8AAA8A;
            text-decoration: none;
            padding: 5px 10px;
        }

        .footer-links a {
            cursor: pointer;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: rgba(255, 255, 255, 0.98);
            margin: 5% auto;
            padding: 40px;
            border-radius: 16px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            direction: ltr;
        }

        .modal-content .lang-he {
            direction: rtl;
            text-align: center;
        }

        .modal-content .lang-en {
            direction: ltr;
            text-align: center;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(122, 154, 122, 0.3);
            position: relative;
        }

        .modal-header h2 {
            margin: 0;
            color: #4A5A3A;
            font-size: 2em;
        }

        .close-modal {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 2001;
            color: #7A9A7A;
            font-size: 36px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.95);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
        }

        .close-modal:hover {
            color: #4A5A3A;
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .close-modal:active {
            transform: scale(0.95);
        }

        .modal-body {
            color: #3c3c3c;
            line-height: 1.8;
        }

        .modal-body h3 {
            color: #4A5A3A;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.4em;
        }

        .modal-body p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .modal-body ul {
            margin-bottom: 15px;
            padding-right: 20px;
            padding-left: 20px;
        }

        .modal-body li {
            margin-bottom: 10px;
        }

        .contact-info {
            background: rgba(232, 243, 232, 0.3);
            padding: 20px;
            border-radius: 12px;
            margin-top: 25px;
            border: 1px solid rgba(200, 230, 200, 0.5);
        }

        @media (max-width: 768px) {
            .modal-content {
                margin: 10% auto;
                padding: 25px;
                width: 95%;
            }

            .modal-header h2 {
                font-size: 1.5em;
            }

            .modal-body h3 {
                font-size: 1.2em;
            }

            .close-modal {
                top: 10px;
                right: 10px;
                width: 40px;
                height: 40px;
                font-size: 30px;
            }
        }

        /* Language-specific content */
        .lang-he {
            display: block;
            direction: rtl;
            text-align: right;
        }

        .lang-en {
            display: none;
            direction: ltr;
            text-align: left;
        }

        /* Force RTL for Hebrew text, LTR for English text, but center align all */
        .lang-he,
        [class*="lang-he"] {
            direction: rtl !important;
            text-align: center !important;
        }

        .lang-en,
        [class*="lang-en"] {
            direction: ltr !important;
            text-align: center !important;
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .header {
                padding: 30px 15px;
            }

            .header h1 {
                font-size: 2em;
            }

            .header p {
                font-size: 1.1em;
            }


            .social-links {
                max-width: calc(100% - 20px);
                padding: 0 10px;
                margin: 30px auto;
            }

            .social-btn {
                width: 100%;
                font-size: 1em;
                padding: 18px 20px;
                flex-direction: column;
                gap: 15px;
            }

            .social-btn-content {
                width: 100%;
            }

            .social-btn-title {
                font-size: 1.3em;
            }

            .social-btn-desc {
                font-size: 0.95em;
            }

            .social-btn-icon {
                width: 40px;
                height: 40px;
            }

            .cta-section {
                padding: 30px 15px;
            }

            .cta-section h2 {
                font-size: 1.8em;
            }

            .disclaimer {
                padding: 20px;
                margin: 30px auto;
                font-size: 0.85em;
                max-width: calc(100% - 20px);
            }

            .footer {
                padding: 20px 15px;
                font-size: 0.85em;
            }

            .footer-links {
                flex-direction: column;
                gap: 10px;
            }

            .language-toggle {
                top: 10px;
                right: 10px;
                padding: 6px 10px;
            }

            .language-toggle button {
                font-size: 20px;
                padding: 4px 8px;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.8em;
            }

            .header p {
                font-size: 1em;
            }


            .social-btn {
                padding: 15px;
            }

            .social-btn-title {
                font-size: 1.2em;
            }

            .social-btn-desc {
                font-size: 0.9em;
            }

            .cta-section h2 {
                font-size: 1.5em;
            }

            .disclaimer {
                padding: 15px;
                font-size: 0.8em;
            }
        }