/* GENERAL */

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

.container{
max-width:1100px;
margin:auto;
padding:40px 20px;
}


/* HERO SECTION */

.hero{
height:500px;
background:url('https://connectinghearts.world/assets/images/ch.png') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
position:relative;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:rgba(0,0,0,0.45);
}

.hero-content{
position:relative;
max-width:auto;
}

.hero h1{
font-size:48px;
margin-bottom:15px;
letter-spacing:2px;
}

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

.btn-primary{
display:inline-block;
padding:14px 28px;
background:#ff4b6e;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:bold;
transition:0.3s;
}

.btn-primary:hover{
background:#e63c5c;
}


/* ABOUT SECTION */

.about{
background:white;
text-align:center;
}

.about h2{
margin-bottom:20px;
font-size:32px;
}

.about p{
max-width:800px;
margin:auto;
margin-bottom:15px;
font-size:16px;
}


/* FEATURES SECTION */

.features{
background:#f4f6fb;
padding:60px 20px;
}

.features h2{
text-align:center;
margin-bottom:40px;
font-size:32px;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.feature-card{
background:white;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

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

.feature-card img{
width:200px;
margin-bottom:15px;
}

.feature-card h3{
margin-bottom:10px;
}


/* PRICING SECTION */

.pricing{
text-align:center;
}

.pricing h2{
margin-bottom:30px;
font-size:32px;
}

.pricing-card{
background:white;
padding:40px;
border-radius:10px;
max-width:400px;
margin:auto;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.price{
font-size:28px;
font-weight:bold;
margin:15px 0;
color:#ff4b6e;
}


/* TRUST SECTION */

.trust{
background:#ffffff;
text-align:center;
padding:60px 20px;
}

.trust h2{
margin-bottom:20px;
font-size:32px;
}

.trust p{
max-width:750px;
margin:auto;
margin-bottom:15px;
}


/* CTA SECTION */

.cta{
background:#ff4b6e;
color:white;
text-align:center;
padding:70px 20px;
}

.cta h2{
font-size:34px;
margin-bottom:15px;
}

.cta p{
margin-bottom:25px;
font-size:18px;
}

.cta .btn-primary{
background:white;
color:#ff4b6e;
}

.cta .btn-primary:hover{
background:#f2f2f2;
}


/* FOOTER */

.footer{
background:#222;
color:#ccc;
text-align:center;
padding:20px;
font-size:14px;
}


/* MOBILE RESPONSIVE */

@media(max-width:900px){

.feature-grid{
grid-template-columns:1fr 1fr;
}

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

}

@media(max-width:600px){

.feature-grid{
grid-template-columns:1fr;
}

.hero{
height:420px;
}

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

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

}