/* Assist Telcom Shared Header Styles */

:root{
  --accent:#d40000;
  --ink:#111;
  --border:#eee;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 22px;
}

header{
   padding:8px 22px;
  border-bottom:1px solid var(--border);
  background:#fff;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.logo img{
  height:38px;
  width:auto;
  display:block;
}

.links a{
  margin-right:16px;
  text-decoration:none;
  color:var(--ink);
  font-weight:600;
}

.links a:hover{
  text-decoration:underline;
}

.phone{
  color:var(--accent);
  font-weight:800;
  text-decoration:none;
}
