body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f9f9f9;
}

header {
  background: linear-gradient(90deg, #0066ff, #00ccff);
  color: white;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.3em;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover, nav a.active {
  text-decoration: underline;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 50px 5%;
  background: white;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2.5em;
  color: #0066ff;
}

.hero-text p {
  font-size: 1.1em;
  margin: 15px 0;
}

.hero-img {
  flex: 1;
  text-align: center;
}

.hero-img img {
  max-width: 100%;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #0066ff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn:hover {
  background: #0044aa;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 5%;
}

.feature-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

footer {
  text-align: center;
  background: #222;
  color: white;
  padding: 10px;
  margin-top: 20px;
}

.page-title {
  text-align: center;
  padding: 40px 5%;
  background: white;
}

.contact-form {
  padding: 40px 5%;
  display: flex;
  justify-content: center;
}

.contact-form form {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  width: 100%;
}
