*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI, Arial;
}

body{
background:white;
color:#333;
line-height:1.6;
}


header{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:white;
box-shadow:0 3px 15px rgba(0,0,0,0.07);
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:26px;
font-weight:700;
color:#6b3df4;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
text-decoration:none;
color:#444;
font-weight:500;
}

nav a:hover{
color:#6b3df4;
}

.menu{
display:none;
font-size:26px;
cursor:pointer;
}


.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:90px 8%;
border-bottom:1px solid #eee;
flex-wrap:wrap;
}

.hero-text{
max-width:480px;
}

.hero-text h1{
font-size:44px;
color:#222;
margin-bottom:18px;
}

.hero-text p{
color:#666;
margin-bottom:20px;
font-size:17px;
}

.hero-img{
width:420px;
max-width:100%;
}

.btn{
display:inline-block;
background:#6b3df4;
color:white;
padding:12px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
}


.services{
padding:80px 8%;
text-align:center;
border-bottom:1px solid #eee;
}

.services h2{
color:#6b3df4;
margin-bottom:40px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.service{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.service img{
width:60px;
margin-bottom:15px;
}


.why{
padding:80px 8%;
background:#faf8ff;
text-align:center;
border-bottom:1px solid #eee;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.why-card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}


.features{
padding:80px 8%;
text-align:center;
border-bottom:1px solid #eee;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.feature{
background:#faf8ff;
padding:25px;
border-radius:10px;
}

.feature img{
width:60px;
margin-bottom:10px;
}


.testimonials{
padding:80px 8%;
background:#faf8ff;
text-align:center;
border-bottom:1px solid #eee;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.testimonial{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}


.contact{
padding:80px 8%;
text-align:center;
}

.contact p{
margin:6px 0;
}


footer{
background:#111;
color:white;
text-align:center;
padding:30px;
}


@media(max-width:768px){

.menu{
display:block;
}

nav ul{
display:none;
flex-direction:column;
position:absolute;
right:8%;
top:70px;
background:white;
width:200px;
padding:20px;
border-radius:8px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

nav ul.show{
display:flex;
}

.hero{
text-align:center;
}

.hero-text{
margin:auto;
}

.hero-img{
margin-top:30px;
}

}