.legal-section { padding: 60px 20px; max-width: 860px; margin: 0 auto; }
.legal-section h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #1f2937; }
.legal-section .subtitle { font-size: 14px; color: #6b7280; margin-bottom: 36px; }
.legal-section h2 { font-size: 20px; font-weight: 600; margin: 28px 0 10px; color: var(--primary-blue); }
.legal-section p { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 12px; }
.legal-section ul { margin: 8px 0 16px 20px; }
.legal-section li { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 4px; }
.legal-section strong { color: #111827; }

/* Footer */
.site-footer { background: var(--primary-blue) !important; color: rgba(255,255,255,0.85) !important; padding: 36px 20px !important; margin-top: 60px !important; text-align: left !important; }
.site-footer .container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.site-footer a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: white; text-decoration: underline; }
.site-footer .footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.site-footer .footer-contact { font-size: 13px; opacity: 0.7; }
.site-footer .footer-copy { font-size: 12px; opacity: 0.55; text-align: center; width: 100%; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: #1f2937; color: #f3f4f6; padding: 16px 24px; display: none; box-shadow: 0 -4px 12px rgba(0,0,0,0.15); }
.cookie-banner.show { display: block; }
.cookie-banner-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.cookie-banner p { font-size: 13px; line-height: 1.4; flex: 1; min-width: 220px; }
.cookie-banner button { flex-shrink: 0; padding: 6px 18px; font-size: 13px; font-weight: 600; border: none; border-radius: 4px; cursor: pointer; }
.cookie-banner .btn-accept { background: var(--accent-red); color: white; }
.cookie-banner .btn-accept:hover { background: #b71c1c; }
.cookie-banner .btn-reject { background: transparent; color: #d1d5db; border: 1px solid #6b7280; }
.cookie-banner .btn-reject:hover { border-color: #9ca3af; color: white; }

/* Back to Top */
#backToTop { position: fixed; bottom: 30px; right: 30px; z-index: 9997; width: 44px; height: 44px; border-radius: 50%; border: none; background: white; color: var(--primary-blue); font-size: 22px; font-weight: 700; cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s; display: flex; align-items: center; justify-content: center; }
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { background: #f0f4ff; transform: scale(1.05); box-shadow: 0 4px 14px rgba(0,0,0,0.25); }
