:root {
            --primary-color: #1e293b;
            --accent-color: #2563eb;
            --white: #ffffff;
            --text-dark: #0f172a;
            --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
        }

        body {
            background: #ffffff;
            margin: 0;
            font-family: 'Open Sans', sans-serif;
            line-height: 1.7;
            color: #0f172a;
        }

        h3 {
            font-family: 'Montserrat', sans-serif;
        }

        h1,
        h2 {
            font-family: var(--font-serif);
            font-weight: 600;
        }

        h1 {
            font-size: 2.5rem;
        }

        header {
            background: #ffffff;
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 70px;
            display: flex;
            align-items: center;
            box-shadow: var(--shadow-card);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .legal-content {
            padding: 6rem 0;
        }

        .legal-text h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
        }

        .legal-text h2 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .legal-text p {
            margin-bottom: 1.2rem;
            color: #475569;
        }
    
.footer-bottom{display:flex;justify-content:space-between;align-items:center;gap:2rem;margin-top:0;padding-top:0;}
.footer-bottom .footer-share{display:flex;justify-content:flex-end;align-items:center;margin:0;}
.footer-bottom .footer-legal{border-top:0;padding-top:0;margin:0;text-align:left;font-size:0.8rem;opacity:0.6;}
@media(max-width:900px){.footer-bottom{flex-direction:column;align-items:center;gap:0.8rem;}.footer-bottom .footer-share{justify-content:center;}.footer-bottom .footer-legal{text-align:center;}}
