body{
font-family:'Poppins',sans-serif;
overflow-x:hidden;
}

.hero{
padding-top:140px;
padding-bottom:80px;
background:#f8f6f6;
}

.hero h1{
font-size:60px;
font-weight:800;
line-height:1.1;
}

.hero p{
margin:25px 0;
color:#666;
}

.hero-img{
max-height:700px;
}

.features{
background:#121212;
color:white;
}

.feature-card{
height:220px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:30px;
background-size:cover;
background-position:center;
position:relative;
}

.feature-card::before{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,.5);
}

.feature-card *{
position:relative;
z-index:2;
}

.about-section{
padding:100px 0;
}

.about-section h2{
font-weight:800;
}

.courses{
padding:100px 0;
background:#1a1135;
color:white;
}

.course-card{
background:white;
color:black;
border-radius:10px;
overflow:hidden;
transition:.3s;
}

.course-card:hover{
transform:translateY(-8px);
}

.course-body{
padding:20px;
}

.price{
background:#ff4d67;
padding:8px 15px;
color:white;
border-radius:30px;
}

@media(max-width:768px){

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

.hero{
text-align:center;
}

}
.login-page{
background:
linear-gradient(
135deg,
#1a1135,
#ff4d67
);
height:100vh;
display:flex;
align-items:center;
justify-content:center;
}

.login-card{
background:white;
width:420px;
padding:40px;
border-radius:20px;
box-shadow:
0 15px 40px rgba(0,0,0,.2);
}

.form-control{
height:50px;
border-radius:10px;
}