*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  background:#f5f7ff;
  color:#222;
}

header{
  background:linear-gradient(90deg,#5f2eea,#9333ea);
  padding:20px 0;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

nav h2{
  color:#fff;
}

nav ul{
  display:flex;
  list-style:none;
  gap:25px;
}

nav ul li a{
  color:white;
  text-decoration:none;
  font-weight:500;
}

.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:70px 0;
}

.hero-text{
  width:50%;
}

.hero-text h1{
  font-size:45px;
  margin-bottom:20px;
}

.hero-text p{
  margin-bottom:20px;
  font-size:18px;
}

.btn{
  background:#5f2eea;
  color:white;
  padding:12px 25px;
  border-radius:6px;
  text-decoration:none;
}

.hero img{
  width:45%;
  border-radius:12px;
}

.section{
  padding:70px 0;
  text-align:center;
}

.cards{
  display:flex;
  gap:30px;
  margin-top:40px;
  justify-content:center;
}

.card{
  background:white;
  width:300px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  overflow:hidden;
}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.card h3{
  padding:15px;
}

.card p{
  padding:0 15px 20px 15px;
  font-size:14px;
}

footer{
  background:#111;
  color:white;
  text-align:center;
  padding:25px 0;
  margin-top:50px;
}

.form-box{
  max-width:500px;
  margin:50px auto;
  background:white;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.form-box input,
.form-box textarea{
  width:100%;
  padding:12px;
  margin:10px 0;
  border:1px solid #ddd;
  border-radius:6px;
}

.form-box button{
  background:#5f2eea;
  color:white;
  padding:12px 20px;
  border:none;
  border-radius:6px;
}