:root{
--bosch-blue:#003B5C;
--bosch-light:#005F8F;
--bosch-red:#E2001A;
--bg:#f4f6f8;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:'Roboto',sans-serif;}

body{background:var(--bg);color:#222;}

/* ====== (régi header/nav stílusok bent maradhatnak, de már nem használod) ====== */
/*telllla*/
.header-phone{
  color:white;
  text-decoration:none;
  font-weight:600;
}
.header-phone:hover{
  text-decoration:underline;
  opacity:0.9;
}
/* HEADER BAR */
.header-top{
background:var(--bosch-blue);
color:white;
padding:12px 40px;
display:flex;
justify-content:space-between;
align-items:center;
}
.header-top .left{
display:flex;
align-items:center;
gap:20px;
}
.header-top img{
height:55px;
}
.header-top .right{
display:flex;
align-items:center;
gap:25px;
}
.book-btn{
background:var(--bosch-red);
color:white;
padding:10px 18px;
text-decoration:none;
font-weight:600;
border-radius:3px;
}
.book-btn:hover{
opacity:0.9;
}
/* NAVIGATION */
.navbar{
background:white;
padding:15px 40px;
display:flex;
justify-content:center;
gap:40px;
border-bottom:1px solid #e0e0e0;
}
.navbar a{
text-decoration:none;
color:var(--bosch-blue);
font-weight:500;
}
