body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f8f8fc;
}

.container{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1100px;
margin:auto;
}

header{
background:white;
padding:15px 0;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
color:#6a2bd9;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#333;
font-weight:bold;
}

.hero{
height:80vh;
background:linear-gradient(135deg,#5b2cff,#9333ea);
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

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

.buttons{
margin-top:20px;
}

.btn{
padding:12px 20px;
text-decoration:none;
border-radius:6px;
margin:10px;
display:inline-block;
}

.primary{
background:white;
color:#6a2bd9;
}

.secondary{
border:2px solid white;
color:white;
}

.banner-section{
padding:60px 20px;
}

.banner{
position:relative;
max-width:1100px;
margin:auto;
}

.banner img{
width:100%;
border-radius:10px;
}

.banner-text{
position:absolute;
top:20%;
left:10%;
color:white;
max-width:400px;
}

.banner-text h2{
font-size:30px;
}

.banner-text ul{
padding-left:20px;
}

.founder{
text-align:center;
padding:60px;
background:white;
}

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

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
}