
body{
font-family:Arial,sans-serif;
margin:0;
background:#f5f7fb;
color:#222;
}
header{
background:linear-gradient(90deg,#003366,#0077b6);
color:white;
padding:15px 0;
position:sticky;
top:0;
z-index:999;
}
.container{width:90%;margin:auto;}
nav{
display:flex;
justify-content:space-between;
align-items:center;
}
nav ul{
display:flex;
gap:20px;
list-style:none;
}
nav a{
color:white;
text-decoration:none;
font-weight:bold;
}
.hero{
padding:60px 0;
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
align-items:center;
}
.hero img{
width:100%;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.2);
}
.btn{
background:#00a8e8;
padding:12px 24px;
border-radius:8px;
color:white;
text-decoration:none;
display:inline-block;
}
.section{
padding:60px 0;
}
.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}
.card{
background:white;
padding:20px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}
.gallery img{
width:100%;
border-radius:15px;
}
form{
display:grid;
gap:15px;
}
input,textarea,select{
padding:12px;
border:1px solid #ccc;
border-radius:8px;
width:100%;
}
button{
background:#0077b6;
color:white;
border:none;
padding:12px;
border-radius:8px;
cursor:pointer;
}
footer{
background:#001d3d;
color:white;
padding:30px 0;
text-align:center;
margin-top:40px;
}
.lang{
background:white;
color:#003366;
padding:8px;
border-radius:5px;
}
@media(max-width:768px){
.hero{
grid-template-columns:1fr;
}
nav{
flex-direction:column;
}
nav ul{
flex-wrap:wrap;
justify-content:center;
}
}
