.hero{

padding:80px 0;
background:linear-gradient(135deg,#FFF5FA,#F7F3FF);

}

.hero-container{

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

}

.hero-content{

flex:1;

}

.hero-image{

flex:1;
display:flex;
justify-content:center;

}

.hero-image img{

width:100%;
max-width:600px;

}

.hero-badge{

display:inline-block;
padding:10px 22px;
background:#FFE6F2;
color:#E91E63;
border-radius:50px;
font-weight:600;
margin-bottom:25px;

}

.hero h1{

font-size:62px;
line-height:1.2;
margin-bottom:20px;
font-weight:700;

}

.hero h1 span{

color:#E91E63;

}

.hero p{

font-size:18px;
line-height:32px;
color:#666;
margin-bottom:35px;

}

.hero-buttons{

display:flex;
gap:20px;
margin-bottom:50px;

}

.btn-primary{

padding:16px 38px;
background:linear-gradient(135deg,#E91E63,#9C27B0);
color:#fff;
border-radius:50px;
font-weight:600;
transition:.3s;

}

.btn-primary:hover{

transform:translateY(-3px);

}

.btn-outline{

padding:16px 38px;
border:2px solid #E91E63;
border-radius:50px;
color:#E91E63;
font-weight:600;

}

.hero-stats{

display:flex;
gap:50px;

}

.hero-stats h2{

font-size:34px;
color:#E91E63;

}

.hero-stats p{

margin-top:8px;
font-size:15px;

}
.featured-members{
padding:80px 0;
background:#fff;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:40px;
color:#222;
margin-bottom:10px;
}

.section-title p{
color:#666;
font-size:18px;
}

.member-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.member-card{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

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

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

.member-info{
padding:25px;
text-align:center;
}

.member-info h3{
font-size:26px;
margin-bottom:8px;
}

.member-info span{
display:block;
color:#777;
margin-bottom:10px;
}

.verified{
color:#E91E63;
font-weight:600;
margin-bottom:20px;
}

.view-btn{
display:inline-block;
padding:12px 30px;
background:linear-gradient(135deg,#E91E63,#9C27B0);
color:#fff;
border-radius:50px;
}
.search-section{

padding:90px 0;
background:linear-gradient(135deg,#FFF7FB,#F8F4FF);

}

.search-box{

background:#fff;
padding:50px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.search-box h2{

text-align:center;
font-size:40px;
margin-bottom:10px;

}

.search-box p{

text-align:center;
color:#777;
margin-bottom:35px;

}

.search-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;

}

.search-grid select,
.search-grid button{

height:60px;
border-radius:50px;
border:1px solid #ddd;
padding:0 20px;
font-size:16px;

}

.search-grid button{

background:linear-gradient(135deg,#E91E63,#9C27B0);
color:#fff;
border:none;
font-weight:600;
cursor:pointer;

}
.how-it-works{

padding:90px 0;
background:#fff;

}

.steps{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:50px;

}

.step-card{

background:#fff;
padding:40px 30px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;

}

.step-card:hover{

transform:translateY(-10px);

}

.step-icon{

width:80px;
height:80px;
margin:auto;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#E91E63,#9C27B0);
color:#fff;
font-size:30px;
margin-bottom:25px;

}

.step-card h3{

margin-bottom:15px;
font-size:24px;

}

.step-card p{

color:#666;
line-height:28px;

}