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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f8f8f8;
    color:#333;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:white;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    z-index:999;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#ff4b7d;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#ff4b7d;
}

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

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    color:white;
    text-align:center;
    width:700px;
    padding:20px;
}

.hero h1{
    font-size:65px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#ff4b7d;
    color:white;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
}

.btn:hover{
    background:#ff2d67;
    transform:translateY(-3px);
}

section{
    padding:90px 0;
}

h2{
    text-align:center;
    margin-bottom:50px;
    font-size:38px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    margin-bottom:15px;
    color:#ff4b7d;
}

.gallery{
    background:#fff;
}

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

.gallery-grid img{
    width:100%;
    border-radius:15px;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

.story p{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.stats{
    margin-top:60px;
    display:flex;
    justify-content:center;
    gap:80px;
    flex-wrap:wrap;
}

.stats h3{
    font-size:45px;
    color:#ff4b7d;
}

.stats span{
    font-weight:bold;
}

.contact{
    background:#f0f0f0;
}

form{
    max-width:650px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

input,textarea{
    padding:15px;
    border:none;
    border-radius:10px;
    font-size:16px;
}

textarea{
    min-height:150px;
}

button{
    padding:15px;
    border:none;
    background:#ff4b7d;
    color:white;
    font-size:17px;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    background:#ff2d67;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:30px;
}

@media(max-width:768px){

nav{
    flex-direction:column;
    gap:15px;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

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

.hero p{
    font-size:18px;
}

.stats{
    gap:35px;
}

}