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

html{
scroll-behavior:smooth;
}

body{

font-family:Inter,sans-serif;
background:#f8f9fc;
color:#20263b;
line-height:1.7;

}

.container{

width:90%;
max-width:1150px;
margin:auto;

}

header{

background:#fff;
position:sticky;
top:0;
z-index:100;
box-shadow:0 2px 10px rgba(0,0,0,.05);

}

.nav{

display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;

}

.logo{

font-size:30px;
font-weight:800;
color:#6d35ff;

}

nav{

display:flex;
gap:30px;

}

nav a{

text-decoration:none;
color:#555;
font-weight:600;
transition:.3s;

}

nav a:hover{

color:#6d35ff;

}

.hero{

padding:120px 0;
text-align:center;

}

.hero h1{

font-size:64px;
margin-bottom:20px;

}

.hero p{

font-size:20px;
max-width:700px;
margin:auto;
color:#666;

}

.buttons{

margin-top:40px;

}

.btn{

display:inline-block;
padding:16px 38px;
border-radius:12px;
background:linear-gradient(90deg,#6c32ff,#8a43ff);
color:white;
font-weight:700;
text-decoration:none;
margin:10px;

}

.secondary{

background:white;
color:#6c32ff;
border:2px solid #6c32ff;

}

section{

padding:90px 0;

}

h2{

font-size:42px;
margin-bottom:45px;
text-align:center;

}

.cards{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;

}

.card{

background:white;
padding:30px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.card h3{

margin-bottom:15px;

}

.gallery{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;

}

.gallery img{

width:100%;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.12);

}

#privacy{

background:white;

}

#privacy h3{

margin-top:35px;
margin-bottom:10px;

}

#privacy p{

margin-bottom:15px;
color:#555;

}

.center{

text-align:center;

}

footer{

background:#161b2d;
color:white;
padding:35px 0;

}

.footer{

display:flex;
justify-content:space-between;
align-items:center;

}

.footer a{

color:white;
margin-left:20px;
text-decoration:none;

}

@media(max-width:768px){

.nav{

flex-direction:column;
gap:20px;

}

nav{

flex-wrap:wrap;
justify-content:center;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

}

.footer{

flex-direction:column;
gap:20px;

}

}