*{
margin:0;
padding:0;
box-sizing:border-box;
 font-family: "Google Sans", sans-serif;
}

body{
background:#f5f7fb;
color:#333;
line-height:1.8;
}

.hero{
background:linear-gradient(rgba(62, 65, 79, 0.884),rgba(0,88,70,.8)),
url(Images/Background/pexels-markus-winkler-1430818-12188471.jpg);
background-size:cover;
background-position:center;
padding:90px 20px;
text-align:center;
color:white;
}

.hero h1{
font-size:50px;
margin-bottom:10px;
}

.hero h2{
font-size:30px;
margin-bottom:15px;
font-weight:500;
}

.hero p{
font-size:18px;
opacity:.9;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
padding:40px 0;
}

.card{
background:white;
padding:35px;
margin-bottom:30px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card h2{
color:purple;
margin-bottom:20px;
border-left:6px solid lightgreen;
padding-left:12px;
}

.card h3{
margin-top:20px;
margin-bottom:10px;
color: purple;
}

.card ul{
padding-left:25px;
}

.card li{
margin-bottom:8px;
}

.note{
background: lightgreen;
padding:20px;
border-left:5px solid ;
border-radius:8px;
margin:20px 0;
color: purple;
}

.contact p{
font-size:18px;
margin-bottom:10px;
}

.consent label{
display:block;
padding:12px;
margin:12px 0;
background:#f3f3f3;
border-radius:8px;
cursor:pointer;
}

input[type=checkbox]{
margin-right:10px;
transform:scale(1.2);
}

footer{
text-align:center;
padding:30px;
background: purple;
color:white;
margin-top:40px;
}

@media(max-width:768px){

.hero h1{
font-size:35px;
}

.hero h2{
font-size:22px;
}

.card{
padding:25px;
}

}  