/* Compact single-file version (optional) */
:root {
  --bg: #ffffff;
  --text: #333333;
  --primary: #3e64ff;
}
*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; line-height: 1.5; }

.hero-wrap { min-height: 100vh; background: #3e64ff; display: flex; align-items: center; }
.hero-wrap img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.overlay { z-index: 1; background: rgba(0,0,0,.5); position: absolute; width: 100%; height: 100%; }
#ftco-navbar { min-height: 80px; }

.js-preload { opacity: 0; transition: opacity .3s ease; }
.js-preload.is-loaded { opacity: 1; }