body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #222;
  color: white;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  margin-right: 10px;
}
nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to right, #006170, #0A798A);
  color: white;
}
.villainbox {
	width:100%;
	justify-content:center;
	display:flex;
}
.villainimg {
  width:300px;
  height:250px;
  margin:0 30px 0 30px;
  display:inline-block;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: orange;
  color: #333;
  border-radius: 5px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
}
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: white;
}
.feature {
  flex: 1 1 300px;
  max-width: 300px;
  margin: 10px;
  text-align: center;
}


.text-page {
  padding: 40px 20px;
  background-color: white;
  max-width: 800px;
  margin: auto;
}
.contact-form label {
  display: block;
  margin-top: 15px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  box-sizing: border-box;
  font-size: 16px;
}
.contact-form button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #222;
  color: white;
  margin-top: 40px;
}

h1 {font-size:40px;line-height:48px;}
.textm {font-size:18px;}
.featureimg {width:300px;height:250px;}

.smallertext {font-size:9px;color:#333}
.maintext {font-size:11px;color:#333;}
.biggertext {font-size:14px;color:#333;}
.subtext {font-size:18px;color:#333;}
.fadetext {font-size:11px;color:#909090;}
.red {color:#ff3300;font-weight:bold;}

.space5{width:100%;height:5px;}
.space15{width:100%;height:15px;}
.space45{width:100%;height:45px;}

.clearBoth { clear:both; }

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }
  nav.show {
    display: flex;
  }

  nav a {
    margin: 5px 0;
  }

  .hero {
    padding: 40px 20px;
  }
  .features {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 300px;
  }
 .villainbox {
	display:block;
	margin:0px;
 } 

}