.hero-buttons{

display:flex;

gap:20px;

}

.btn-primary{

background:#ff7a00;

padding:16px 36px;

border-radius:50px;

color:#fff;

font-weight:700;

transition:.35s;

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 18px 40px rgba(255,122,0,.35);

}

.btn-secondary{

border:2px solid white;

padding:16px 36px;

border-radius:50px;

color:white;

font-weight:700;

transition:.35s;

}

.btn-secondary:hover{

background:white;

color:#111;

}