body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fa;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  background: #0d6efd;
  color: white;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 15px;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.hero {
  background: linear-gradient(135deg,#0d6efd,#0a58ca);
  color: white;
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

.hero-image img {
  width: 220px;
  border-radius: 50%;
}

.section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.light {
  background: #f0f3f7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta {
  background: #0d6efd;
  color: white;
  text-align: center;
  padding: 40px;
}

button, .btn {
  padding: 10px 15px;
  border: none;
  background: #0d6efd;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

.powered {
  margin-top: 10px;
  font-size: 14px;
  color: #94a3b8;
}

.powered a {
  color: #38bdf8;
  text-decoration: none;
}

.powered a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 20px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
}
