*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
scroll-behavior:smooth;
}

body{
background:#dbdbdb;
}

.container{
width:85%;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;

}
.logo {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: yellow;
    font-size: 13pt;
}
header{
background:#00359fe3;
color:white;
border: 1px solid rgb(0, 134, 7);
position:fixed;
width:100%;
top:0;
z-index:999;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
}

header h2{
padding:15px 0;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:20px;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
}

.menu-toggle{
display:none;
font-size:30px;
cursor:pointer;
}

.hero{
height:100vh;
background:url("depan.jpeg") center/cover;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.overlay{
background:rgba(0,0,0,.55);
padding:50px;
color:white;
border-radius:10px;
}

.overlay h1{
font-size:30px;
}

.overlay h2{
font-size:55px;
margin:15px 0;
}

.btn{
display:inline-block;
margin-top:20px;
background:#ff9800;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
}

.section{
padding:90px 10%;
}

.gray{
background:#ececec;
}

.section h2{
text-align:center;
margin-bottom:40px;
color:#0066cc;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.box{
background:white;
padding:25px;
border-radius:10px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.1);
transition:.3s;
}

.box:hover{
transform:translateY(-10px);
}

.box img{
width: 100%;
border-radius:50%;
margin-bottom:15px;
}

.counter-box{
background:#0066cc;
color:white;
padding:30px;
border-radius:10px;
text-align:center;
}

.counter{
font-size:45px;
font-weight:bold;
}

form{
display:flex;
flex-direction:column;
gap:15px;
max-width:600px;
margin:auto;
}

input,
textarea{
padding:15px;
border:1px solid #ccc;
border-radius:5px;
}

button{
padding:15px;
background:#0066cc;
color:white;
border:none;
cursor:pointer;
font-size:18px;
}

footer{
background:#222;
color:white;
padding:20px;
text-align:center;
}

@media(max-width:768px){

nav ul{
display:none;
position:absolute;
top:60px;
left:0;
width:100%;
background:#0066cc;
flex-direction:column;
}

nav ul.active{
display:flex;
}

nav ul li{
margin:15px;
}

.menu-toggle{
display:block;
color:white;
}

.overlay h2{
font-size:35px;
}

}