
body{
font-family:'Inter',sans-serif;
margin:0;
background:#f8fafc;
color:#111827;
}

.container{
max-width:1200px;
margin:auto;
padding:0 24px;
}

.navbar{
position:fixed;
width:100%;
top:0;
background:white;
box-shadow:0 2px 12px rgba(0,0,0,.08);
z-index:1000;
}

.navbar .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 24px;
}

.logo img{
height:60px;
}

.menu{
display:flex;
gap:24px;
}

.menu a{
text-decoration:none;
color:#0A6F79;
font-weight:600;
}

.hero{
height:100vh;
background:url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?q=80&w=1600&auto=format&fit=crop') center/cover;
display:flex;
align-items:center;
position:relative;
}

.overlay{
position:absolute;
inset:0;
background:rgba(7,19,26,.75);
}

.hero-content{
position:relative;
max-width:700px;
padding:0 80px;
color:white;
}

.hero h1{
font-size:72px;
line-height:1.1;
}

.buttons{
display:flex;
gap:16px;
margin-top:32px;
}

.btn-primary,.btn-secondary{
padding:16px 32px;
border-radius:999px;
text-decoration:none;
font-weight:700;
}

.btn-primary{
background:#0F9CA8;
color:white;
}

.btn-secondary{
border:1px solid white;
color:white;
}

.section,.page{
padding:120px 0;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:32px;
margin-top:40px;
}

.card{
background:white;
border-radius:24px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
padding-bottom:20px;
}

.card img{
width:100%;
height:280px;
object-fit:cover;
}

.card h3{
padding:24px;
}

.footer{
background:#07131A;
color:white;
padding:60px 0;
text-align:center;
}

.form{
display:flex;
flex-direction:column;
gap:16px;
max-width:700px;
}

.form input,.form textarea,.search{
padding:16px;
border-radius:16px;
border:1px solid #d1d5db;
}

@media(max-width:768px){
.hero h1{
font-size:48px;
}
.hero-content{
padding:0 24px;
}
.menu{
display:none;
}
}
