    <style>
        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #1a3a5a; 
            color: #f4ede4; 
            overflow-x: hidden;
            font-family: 'Assistant', sans-serif;
            -webkit-tap-highlight-color: transparent;
            transition: filter 0.3s ease;
        }
        
        h1, h2, h3, .font-serif {
            font-family: 'Bellefair', serif !important;
        }

        section {
            scroll-margin-top: 100px;
        }

        /* Navbar Initial State - Hidden */
        #navbar {
            transform: translateY(-100%);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            pointer-events: none;
        }

        /* Navbar Scrolled State - Visible */
        #navbar.scrolled {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.5, 0, 0, 1);
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .img-hover-scale {
            transition: transform 0.8s ease;
        }
        .group:hover .img-hover-scale {
            transform: scale(1.03);
        }

        .hover-underline {
            position: relative;
        }
        .hover-underline::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            right: 0;
            background-color: #ff8c42; 
            transition: width 0.3s ease;
        }
        .group:hover .hover-underline::after {
            width: 100%;
        }

        @keyframes pulse-whatsapp {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        .whatsapp-pulse {
            animation: pulse-whatsapp 2s infinite;
        }

        .logo-pure-white {
            filter: brightness(0) invert(1) !important;
        }

        .collection-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }
        @media (min-width: 768px) {
            .collection-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }
        @media (min-width: 1024px) {
            .collection-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: #ff8c42;
            box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
        }

        #success-message {
            display: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item[open] summary i {
            transform: rotate(180deg);
        }

        .glass-orange-btn {
            background: rgba(255, 140, 66, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 2px solid rgba(255, 140, 66, 0.6);
        }
        .glass-orange-btn:hover {
            background: rgba(255, 140, 66, 0.4);
            border-color: rgba(255, 140, 66, 1);
        }

        .footer-link {
            touch-action: manipulation;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
        }

        #mobile-menu .menu-item {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease forwards;
        }
        #mobile-menu.active .menu-item {
            opacity: 1;
            transform: translateY(0);
        }

        .ws-icon-green { fill: #25D366; }
        .ws-icon-white { fill: #FFFFFF; }

        /* Enhanced Hero Styles */
        .hero-glow {
            background: radial-gradient(circle at center, rgba(255, 140, 66, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-title-shadow {
            text-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        /* Story Section Ornaments */
        .story-bg-pattern {
            background-image: radial-gradient(rgba(255, 140, 66, 0.05) 1px, transparent 1px);
            background-size: 30px 30px;
        }

        /* Desktop Fixes */
        @media (min-width: 768px) {
            #home {
                height: 75vh; 
                padding-bottom: 4rem; 
            }
            .nav-logo-container {
                padding-bottom: 20px; 
            }
            .nav-logo-img {
                transform: translate(-50%, -40%) !important; 
            }
        }

        /* Modal Styles */
        #legal-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 100;
            background: rgba(26, 58, 90, 0.95);
            backdrop-filter: blur(10px);
        }
        #legal-modal.active {
            display: flex;
        }

        /* Cookie Banner */
        #cookie-banner {
            transform: translateY(100%);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        #cookie-banner.visible {
            transform: translateY(0);
        }

        /* Accessibility Button Logic - Dynamic Position */
        #access-toggle {
            touch-action: none;
            cursor: grab;
            transition: transform 0.3s ease;
        }
        #access-toggle:active {
            cursor: grabbing;
        }

        /* Accessibility Profile Styles */
        #access-menu {
            display: none;
            transform-origin: bottom left;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: scale(0.95) translateY(10px);
        }
        #access-menu.active {
            display: block;
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .access-toggle-switch {
            width: 44px;
            height: 24px;
            background: rgba(255,255,255,0.1);
            border-radius: 99px;
            position: relative;
            transition: background 0.3s ease;
        }
        .access-toggle-switch::after {
            content: '';
            position: absolute;
            top: 4px;
            right: 4px;
            width: 16px;
            height: 16px;
            background:#1f3b57;
            border-radius: 50%;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .access-active .access-toggle-switch {
            background: #ff8c42;
        }
        .access-active .access-toggle-switch::after {
            transform: translateX(-20px);
        }

        /* Accessibility Overrides */
        body.access-high-contrast {
            background-color: #000 !important;
            color: #fff !important;
            filter: none !important;
        }
        body.access-high-contrast section, body.access-high-contrast footer, body.access-high-contrast nav {
            background-color: #000 !important;
            border-color: #fff !important;
        }
        body.access-high-contrast .text-white\/50, body.access-high-contrast .text-white\/60, body.access-high-contrast .text-white\/80 {
            color: #fff !important;
        }
        body.access-large-text {
            font-size: 1.25rem !important;
        }
        body.access-large-text h1 { font-size: 3.5rem !important; }
        body.access-large-text h2 { font-size: 3rem !important; }
        body.access-underline-links a {
            text-decoration: underline !important;
            text-underline-offset: 4px;
        }
        body.access-stop-animations .reveal, body.access-stop-animations .whatsapp-pulse {
            transition: none !important;
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
        }
/* Privacy Page Headings */

.privacy-page h1,
.privacy-page h2 {
  font-family: 'Heebo', sans-serif;
}

.privacy-page h1 {
  font-weight: 800;
  letter-spacing: -0.5px;
}

}
/* Privacy Page Text Size */

.privacy-page p {
  font-size: 14px;
}

@media (min-width: 768px) {
  .privacy-page p {
    font-size: 15px;
  }
}
.privacy-page p,
.privacy-page li {
    font-size: 14px;
}
.privacy-page p,
.privacy-page li {
    font-size: 14px !important;
}
/* גלילה יפה למודאל */
#modalContainer iframe {
  border-radius: 24px;
}

/* עיצוב פס גלילה - כרום */
#modalContainer iframe::-webkit-scrollbar {
  width: 10px;
}

#modalContainer iframe::-webkit-scrollbar-track {
  background: transparent;
}

#modalContainer iframe::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
}

#modalContainer iframe::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.45);
}

/* לפיירפוקס */
#modalContainer iframe {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}
    </style>
