
*{box-sizing:border-box;margin:0;padding:0}

body{
font-family:Arial;
background:white;
color:#222;
line-height:1.6;
}

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

.header{
border-bottom:1px solid #eee;
position:sticky;
top:0;
background:rgb(255, 189, 89);
}

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

.logo{
display:flex;
align-items:center;
gap:10px;
}

.logo-box{
width:40px;
height:40px;
background:rgb(66, 66, 66);
color:rgb(255, 189, 89);
display:flex;
align-items:center;
justify-content:center;
border-radius:10px;
font-weight:bold;
}

.brand{font-weight:700}
.sub{font-size:12px;color:#666}

nav a{
margin-left:20px;
text-decoration:none;
color:#000000;
}

#menuBtn{display:none}

.hero{
padding:70px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.badge{
font-size:15px;
border:1px solid #ddd;
padding:5px 10px;
border-radius:20px;
color: rgb(255, 189, 89);
background-color: rgb(66, 66, 66);
}

.hero h1{
font-size:40px;
margin:15px 0;
}

.hero p{color:#555}

.cta{
margin-top:25px;
display:flex;
gap:15px;
}

.btn{
padding:12px 20px;
border-radius:10px;
text-decoration:none;
font-weight:600;
}

.primary{
background:rgb(255, 189, 89);
color:rgb(66, 66, 66);

animation: pulse 1.5s infinite;
}

@keyframes pulse{
   0%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,179,0,0.7);
    }

    70%{
        transform: scale(1.08);
        box-shadow: 0 0 0 15px rgba(255,179,0,0);
    }

    100%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,179,0,0);
    }
}

.secondary{
border:1px solid #ccc;
color:rgb(66, 66, 66);
}

.card-area{
background:rgb(255, 189, 89);
padding:20px;
border-radius:20px;
}

.card{
background:white;
padding:15px;
border-radius:12px;
margin-top:10px;
border:1px solid #eee;
}

.card.big{font-weight:bold}

.info{
background:#f6f6f6;
padding:60px 0;
}

.info-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.info-card{
background:white;
padding:20px;
border-radius:12px;
border:1px solid #eee;
}

.bottom-cta{
padding:70px 0;
text-align:center;
}

.footer{
border-top:1px solid #eee;
padding:20px 0;
}

.footer-inner{
display:flex;
justify-content:space-between;
}

.footer a{
margin-left:15px;
text-decoration:none;
color:#555;
}

@media(max-width:800px){

.hero-grid{grid-template-columns:1fr}
.info-grid{grid-template-columns:1fr}

nav{
display:none;
position:absolute;
background:white;
right:20px;
top:70px;
padding:15px;
border:1px solid #eee;
}

nav.show{display:block}

#menuBtn{display:block}

}
