/* style.css */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #333;
}
.topbar {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-weight: 800;
  font-size: 24px;
  color: #2e6ef7;
}
.topbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.topbar a {
  text-decoration: none;
  font-weight: 600;
  color: #555;
}
.topbar a:hover {
  color: #2e6ef7;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  background: linear-gradient(135deg, #edf0f5, #ffffff);
}
.hero-text h1 {
  font-size: 48px;
  margin: 0 0 20px;
  color: #2e6ef7;
}
.hero-text p {
  font-size: 20px;
  color: #666;
}
.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #2e6ef7;
  color: white;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(46, 110, 247, 0.2);
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #1c57d9;
}
.hero-image img {
  max-width: 400px;
}
.features {
  display: flex;
  justify-content: space-around;
  padding: 60px 40px;
  background: #ffffff;
}
.feature {
  width: 30%;
  text-align: center;
}
.feature i {
  font-size: 40px;
  color: #2e6ef7;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.footer {
  text-align: center;
  padding: 20px;
  background: #f0f2f5;
  font-size: 14px;
}