:root { --dark: #0d1f18; --green: #2d5a45; --light-gray: #f9f9f9; --border: #e0e0e0; --font: 'Outfit', sans-serif; }
body { background: #fff; color: #333; font-family: var(--font); margin: 0; line-height: 1.6; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR */
.navbar { background: rgba(13, 31, 24, 0.98) !important; border-bottom: 1px solid var(--border); padding: 15px 0; position: sticky; top: 0; z-index: 100; }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.logo-img { height: 45px; }
.nav-links { list-style: none; display: flex; gap: 30px; margin: 0; }
.nav-links a { text-decoration: none; color: var(--light-gray); font-weight: 500; font-size: 0.95rem; }
.nav-links a.active { color: var(--light-gray); border-bottom: 2px solid var(--green); }

/* CONTENT */
.legal-main { padding: 80px 0; min-height: 60vh; }
.legal-header { margin-bottom: 60px; }
.legal-header h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--dark); margin: 0; }
.line-separator { width: 60px; height: 3px; background: var(--green); margin-top: 15px; }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.legal-section h2 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--green); margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.legal-section p { font-size: 1rem; color: #555; }

/* FOOTER (Inspiré Index) */
.footer { background: var(--dark); color: #fff; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.logo-img-footer { height: 50px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.8rem; letter-spacing: 1px; opacity: 0.7; }
.footer-legal h4 { font-size: 0.8rem; text-transform: uppercase; margin-bottom: 20px; color: var(--green); }
.footer-legal { display: flex; flex-direction: column; gap: 10px; }
.footer-legal a { color: #fff; text-decoration: none; opacity: 0.6; transition: 0.3s; font-size: 0.9rem; }
.footer-legal a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; text-align: center; font-size: 0.85rem; opacity: 0.5; }
.webnify-link { color: #fff; font-weight: 700; text-decoration: none; }
.heart { color: #ff4d4d; }

@media (max-width: 768px) { .legal-grid { grid-template-columns: 1fr; } .footer-content { flex-direction: column; gap: 40px; text-align: center; align-items: center; } }

.intro { font-size: 1.2rem; color: var(--green); margin-top: 10px; font-weight: 300; }
.clean-list { list-style: none; padding: 0; margin-top: 10px; }
.clean-list li { font-size: 0.95rem; color: #555; padding: 5px 0; display: flex; align-items: center; }
.clean-list li::before { content: "•"; color: var(--green); font-weight: bold; margin-right: 10px; }