body{
margin:0;
font-family:Arial;
background:#f5f6fb;
}

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo{
font-size:24px;
font-weight:bold;
color:#ff2c8b;
}

.logo span{
color:#2a2a54;
}

nav a{
margin:0 15px;
text-decoration:none;
color:#333;
}

.header-right a{
margin-left:15px;
}

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:80px 40px;
background:linear-gradient(180deg,#eef1ff,#f7f8fc);
}

.hero-text{
max-width:500px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
color:#2a2a54;
}

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

.hero-buttons button{
margin-right:15px;
padding:12px 20px;
border-radius:6px;
border:none;
cursor:pointer;
}

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

.btn-secondary{
background:white;
border:1px solid #ccc;
}

.hero-image img{
width:320px;
}

.products{
padding:60px 40px;
text-align:center;
}

.product-grid{
display:flex;
gap:30px;
justify-content:center;
margin-top:40px;
}

.product{
background:white;
padding:20px;
border-radius:10px;
width:250px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.product img{
width:100%;
}

.product button{
margin-top:10px;
background:#ff2c8b;
color:white;
border:none;
padding:10px;
border-radius:6px;
}

.footer{
background:#2a2a54;
color:white;
padding:50px 40px;
}

.footer-columns{
display:flex;
justify-content:space-between;
margin-bottom:30px;
}

.footer a{
display:block;
color:#ddd;
text-decoration:none;
margin-top:5px;
}

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,0.2);
padding-top:20px;
}