*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}


body{
    background:#f4f6f8;
    color:#222;
}


nav{
    background:white;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;

    box-shadow:0 3px 15px rgba(0,0,0,0.08);
}


nav h1{
    color:#f59e0b;
}


nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}


nav a{
    text-decoration:none;
    color:#333;
    font-weight:600;
}


.hero{

    background:linear-gradient(135deg,#1f2937,#111827);

    color:white;

    text-align:center;

    padding:120px 20px;
}


.hero h2{
    font-size:55px;
    margin-bottom:15px;
}


.hero p{
    font-size:22px;
    color:#d1d5db;
}



.licenses{

display:flex;
justify-content:center;
gap:25px;

padding:60px 5%;

flex-wrap:wrap;

}


.badge{

background:white;

padding:20px 30px;

border-radius:15px;

font-weight:bold;

box-shadow:0 5px 20px rgba(0,0,0,0.08);

border-left:5px solid #f59e0b;

}



.permission,
.about,
.why,
.cta{

padding:80px 10%;
text-align:center;

}


.permission h2,
.about h2,
.why h2,
.cta h2{

font-size:40px;
margin-bottom:25px;

}


.permission p,
.about p,
.cta p{

max-width:900px;
margin:auto;
line-height:1.8;

font-size:18px;

color:#555;

}


.about h3{

margin-top:40px;
margin-bottom:15px;

font-size:28px;

}



.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

margin-top:50px;

}



.card{

background:white;

padding:35px;

border-radius:18px;

box-shadow:0 8px 25px rgba(0,0,0,0.08);

transition:0.3s;

}


.card:hover{

transform:translateY(-10px);

}


.card h3{

margin-bottom:15px;

color:#f59e0b;

}


.card p{

line-height:1.7;

color:#555;

}



.cta{

background:#111827;

color:white;

}


.cta p{

color:#d1d5db;

margin-bottom:35px;

}



.cta button{

padding:15px 35px;

border:none;

border-radius:50px;

background:#f59e0b;

color:white;

font-size:17px;

cursor:pointer;

font-weight:bold;

transition:0.3s;

}


.cta button:hover{

background:#d97706;

}



footer{

background:white;

padding:30px;

text-align:center;

font-weight:600;

color:#555;

}