
body{
margin:0;
font-family:Arial, sans-serif;
background:#0f0f0f;
color:white;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:black;
}

.navbar ul{
display:flex;
gap:20px;
list-style:none;
}

.navbar a{
color:white;
text-decoration:none;
}

.hero{
height:90vh;
background:url('https://images.unsplash.com/photo-1529636798458-92182e662485?w=1200') center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero h1{
font-size:48px;
}

.hero button{
padding:14px 30px;
background:#ff2e63;
border:none;
color:white;
border-radius:8px;
}

.section{
padding:80px 10%;
text-align:center;
}

.cards{
display:flex;
gap:20px;
flex-wrap:wrap;
justify-content:center;
}

.card{
background:#1a1a1a;
padding:25px;
border-radius:12px;
width:250px;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
}

.gallery img{
width:100%;
border-radius:10px;
}

.stats{
display:flex;
justify-content:center;
gap:60px;
}

.profiles{
display:flex;
gap:20px;
flex-wrap:wrap;
justify-content:center;
}

.profile{
background:#1a1a1a;
padding:15px;
border-radius:12px;
width:200px;
}

.profile img{
width:100%;
border-radius:10px;
}

.contact-form{
display:flex;
flex-direction:column;
gap:10px;
max-width:400px;
margin:auto;
}

.contact-form input,
.contact-form textarea{
padding:10px;
border-radius:6px;
border:none;
}

.contact-form button{
padding:12px;
background:#ff2e63;
border:none;
color:white;
}

footer{
background:black;
padding:40px;
text-align:center;
margin-top:50px;
}
