/* Never Alone — shared chrome + legal page styles
   Header/footer/WhatsApp rules extracted verbatim from about.html so legal
   pages stay visually identical to the rest of the site. */

        :root {
            --primary-sage: #87A96B;
            --soft-coral: #E8B4A0;
            --cream-white: #FDFCF7;
            --muted-teal: #6B9A8A;
            --text-dark: #2C3E50;
            --text-light: #5A6C7D;
            --bg-light: #F8F9FA;
            --bg-white: #FFFFFF;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--cream-white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .header.scrolled {
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .logo img {
            width: 45px;
            height: 45px;
            border-radius: 12px;
        }
        
        .logo-text h1 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
        }
        
        .tagline {
            font-size: 0.8rem;
            color: var(--text-light);
            margin: 0;
        }
        
        nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary-sage);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        nav a:hover::after {
            transform: scaleX(1);
        }

        .cta-button {
            background: var(--soft-coral);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(232, 180, 160, 0.3);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }
        
        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }
        
        .mobile-nav a {
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
        }
        
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-content nav {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .mobile-nav.active {
                display: block;
            }
            
            .header-content .cta-button {
                display: none;
            }
            
            .mobile-nav .cta-button {
                display: inline-flex;
                margin-top: 10px;
            }
            
            .container {
                padding: 0 15px;
            }
        }


        .footer {
            background: var(--text-dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .footer-logo-img {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            object-fit: cover;
        }

        .footer-brand-text h3 {
            color: var(--primary-sage);
            font-size: 1.5rem;
            margin: 0;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .footer-tagline {
            color: #B8C6DB;
            font-size: 0.85rem;
            font-weight: 400;
        }

        .footer-section h3 {
            color: var(--primary-sage);
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
        }

        .footer-section h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-section p {
            color: #B8C6DB;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #B8C6DB;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--primary-sage);
        }

        .footer-contact a {
            color: var(--primary-sage);
            text-decoration: none;
            font-weight: 500;
        }

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

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(135, 169, 107, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-sage);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-sage);
            color: white;
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(135, 169, 107, 0.2);
            padding-top: 20px;
        }

        .footer-bottom-content {
            text-align: center;
        }

        .footer-bottom-content p {
            color: #B8C6DB;
            margin-bottom: 10px;
        }

        .footer-note {
            font-size: 0.9rem;
            font-style: italic;
        }

        .collaboration-section {
            margin-top: 10px;
        }

        .collaboration-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin: 15px 0;
        }

        .collaboration-logo {
            height: 40px;
            width: auto;
            filter: grayscale(100%) brightness(1.2);
            transition: filter 0.3s ease;
        }

        .collaboration-logo:hover {
            filter: grayscale(0%) brightness(1);
        }


        .collaboration-text {
            color: #B8C6DB;
            font-size: 0.85rem;
            margin-bottom: 0;
        }

        /* Footer Mobile Responsive */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .footer-logo-img {
                width: 40px;
                height: 40px;
            }

            .footer-brand-text h3 {
                font-size: 1.3rem;
            }

            .footer-tagline {
                font-size: 0.8rem;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 40px 0 20px;
            }

            .footer-section h3 {
                font-size: 1.3rem;
            }

            .footer-section h4 {
                font-size: 1rem;
            }
        }
    </style>

        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulseWhatsApp 2s infinite;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background-color: #075E54;
            color: white;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid #075E54;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }

        .floating-whatsapp:hover .whatsapp-tooltip {
            opacity: 1;
            transform: translateY(-50%) translateX(-5px);
        }

        @keyframes pulseWhatsApp {
            0% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            }
            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
            }
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            }
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .floating-whatsapp {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
                font-size: 26px;
            }

            .whatsapp-tooltip {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .floating-whatsapp {
                bottom: 15px;
                right: 15px;
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
        }

        /* ============================================================
           Legal page layout (privacy, terms, cookies, data protection)
           ============================================================ */

        .legal-hero {
            background: linear-gradient(135deg, var(--primary-sage) 0%, var(--muted-teal) 100%);
            color: #fff;
            padding: 140px 0 60px;
            text-align: center;
        }

        .legal-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .legal-hero p {
            font-size: 1.05rem;
            opacity: 0.95;
            max-width: 640px;
            margin: 0 auto;
        }

        .legal-meta {
            margin-top: 20px;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .legal-body {
            max-width: 860px;
            margin: 0 auto;
            padding: 60px 20px 80px;
        }

        .legal-body h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--text-dark);
            margin: 44px 0 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(135, 169, 107, 0.25);
        }

        .legal-body h2:first-of-type { margin-top: 0; }

        .legal-body h3 {
            font-size: 1.12rem;
            color: var(--text-dark);
            margin: 26px 0 10px;
            font-weight: 600;
        }

        .legal-body p,
        .legal-body li {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.75;
        }

        .legal-body p { margin-bottom: 14px; }

        .legal-body ul,
        .legal-body ol {
            margin: 0 0 18px 22px;
        }

        .legal-body li { margin-bottom: 8px; }

        .legal-body a {
            color: var(--primary-sage);
            font-weight: 500;
        }

        .legal-body strong { color: var(--text-dark); }

        /* Table of contents */
        .legal-toc {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 24px 28px;
            margin-bottom: 40px;
        }

        .legal-toc h2 {
            font-size: 1.05rem;
            font-family: 'Inter', sans-serif;
            border: none;
            margin: 0 0 12px;
            padding: 0;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-light);
        }

        .legal-toc ol { margin: 0 0 0 20px; }
        .legal-toc li { margin-bottom: 6px; }

        /* Callout boxes */
        .legal-callout {
            border-left: 4px solid var(--primary-sage);
            background: rgba(135, 169, 107, 0.08);
            padding: 18px 22px;
            border-radius: 0 10px 10px 0;
            margin: 24px 0;
        }

        .legal-callout.urgent {
            border-left-color: #C0552F;
            background: rgba(232, 180, 160, 0.22);
        }

        .legal-callout p:last-child { margin-bottom: 0; }

        /* [REVIEW] markers — must be visually obvious before launch */
        .review-flag {
            display: block;
            background: #FFF4E0;
            border: 1px dashed #D98B2B;
            border-radius: 8px;
            padding: 12px 16px;
            margin: 16px 0;
            font-size: 0.9rem;
            color: #7A4A05;
            line-height: 1.6;
        }

        .review-flag::before {
            content: "\26A0 REVIEW BEFORE PUBLISHING — ";
            font-weight: 700;
        }

        /* Definition/data tables */
        .legal-table-wrap { overflow-x: auto; margin: 20px 0 26px; }

        .legal-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.94rem;
            min-width: 520px;
        }

        .legal-table th,
        .legal-table td {
            text-align: left;
            padding: 12px 14px;
            border-bottom: 1px solid #E6E9EC;
            vertical-align: top;
            color: var(--text-light);
            line-height: 1.6;
        }

        .legal-table th {
            background: var(--bg-light);
            color: var(--text-dark);
            font-weight: 600;
        }

        /* Contact block */
        .legal-contact {
            background: var(--bg-white);
            border: 1px solid #E6E9EC;
            border-radius: 12px;
            padding: 24px 28px;
            margin-top: 28px;
        }

        .legal-contact p { margin-bottom: 8px; }

        @media (max-width: 768px) {
            .legal-hero { padding: 120px 0 44px; }
            .legal-hero h1 { font-size: 2rem; }
            .legal-body { padding: 40px 20px 60px; }
            .legal-body h2 { font-size: 1.35rem; margin-top: 34px; }
        }
