/* Minimal styles mapping the TemplateMonster demo classes so you can drop in the real CSS later.
   This is intentionally small — replace with the original template CSS for an exact look. */
:root{
  --bg:#f6f8fb;
  --accent:#2b7cff;
  --muted:#6b7280;
  /* design tokens / theme variables */
  --card-bg: #ffffff;
  --card-border: #e9ecef;
  --muted-2: #9ca3af;
  --primary: var(--accent);
  --text: #111827;
  --container-width:1100px;
}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,ui-sans-serif,system-ui,Helvetica,Arial;color:#111;background:var(--bg)}
.tm-container{max-width:var(--container-width);margin:0 auto;padding:1rem}
.tm-header{background:#fff;border-bottom:1px solid #e6e9ef}
.tm-header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.tm-logo{font-weight:700;color:var(--accent);margin:0}
.tm-nav a{margin-left:1rem;color:var(--muted);text-decoration:none}

.tm-hero{padding:4rem 0;background:linear-gradient(180deg,#eef6ff,transparent)}
.tm-hero-inner{text-align:center}
.tm-hero-title{font-size:2rem;margin:0 0 .5rem}
.tm-hero-sub{color:var(--muted);margin:0 0 1rem}
.tm-btn{display:inline-block;padding:.6rem 1rem;border-radius:6px;text-decoration:none}
.tm-btn.primary{background:var(--accent);color:#fff}

.tm-section-title{font-size:1.25rem;margin:1.5rem 0}
.tm-features{display:flex;gap:1rem;flex-wrap:wrap}
.tm-feature{flex:1 1 220px;background:#fff;padding:1rem;border-radius:8px;border:1px solid #eef2f7}
.tm-feature-title{margin:0 0 .5rem}
.tm-feature-desc{margin:0;color:var(--muted)}

.tm-footer{background:#fff;border-top:1px solid #e6e9ef;padding:1rem 0;margin-top:2rem}
.tm-footer-inner{display:flex;justify-content:space-between;align-items:center}
.tm-footer-nav a{margin-left:1rem;color:var(--muted);text-decoration:none}

/* Responsive */
@media (max-width:800px){
  .tm-features{flex-direction:column}
  .tm-header-inner{flex-direction:column;gap:.5rem}
}

main{
  min-height: calc( 100vh - 247px);
  background: #140d36;
}
.dropdown-menu{
 background-color: unset;
}