.sp-header{
width:100%;
background:#ffffff;
box-shadow:0 2px 12px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:9999;
}
.sp-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
}
.sp-logo{
font-size:28px;
font-weight:700;
color:#0066ff;
text-decoration:none;
}
.sp-menu{
display:flex;
gap:25px;
}
.sp-menu a{
text-decoration:none;
color:#222;
font-weight:600;
transition:.3s;
}
.sp-menu a:hover{
color:#ff6600;
}
.sp-btn{
background:#ff6600;
color:#fff;
padding:12px 22px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}
.sp-btn:hover{
background:#0066ff;
}
@media(max-width:768px){
.sp-container{
flex-direction:column;
gap:15px;
}
.sp-menu{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}
.sp-logo{
font-size:24px;
}
.sp-btn{
width:100%;
text-align:center;
}
}