/* Basic styles */
:root{ --primary:#0b5ed7; --accent:#198754; }
body{ font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; }
.navbar-home{ transition: background-color .3s, box-shadow .3s; background: transparent; }
.navbar-home.navbar-solid{ background:#fff; box-shadow:0 4px 10px rgba(0,0,0,.08); }
.hero{ position:relative; color:#fff; min-height:60vh; display:flex; align-items:center; background:#0b5ed7; }
.hero .overlay{ position:absolute; inset:0; background:linear-gradient(120deg, rgba(11,94,215,.6), rgba(25,135,84,.6)); }
.hero .container{ position:relative; z-index:2; }
.reveal{ opacity:0; transform:translateY(12px); transition:all .6s; }
.reveal.visible{ opacity:1; transform:none; }
.hover-raise{ transition: transform .2s, box-shadow .2s; }
.hover-raise:hover{ transform: translateY(-3px); box-shadow:0 8px 20px rgba(0,0,0,.12); }

.cookie-bar{ position:fixed; left:0; right:0; bottom:0; background:#fff; border-top:1px solid #eee; padding:.75rem 0; z-index:1050; }
.skip-link{ position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus{ position:static; width:auto; height:auto; }

.form-success{ background:#f6fff8; border:1px solid #d1f1db; border-radius:.5rem; }
.footer a{ color:#6c757d; }
