* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial, sans-serif";
  color: #333;
  line-height: 1.6;
  background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
  color: #4f46e5;
}

a {
  text-decoration: none;
  color: #4f46e5;
}
a:hover {
  text-decoration: underline;
}

header {
  background-color: #4f46e5;
  padding: 20px;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header nav a {
  color: #fff;
  font-weight: bold;
}
header nav a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 60px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero .btn-primary {
  background-color: #4f46e5;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
}
.features .card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 200px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.features .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.features .card h2 {
  margin-bottom: 10px;
  color: #4f46e5;
}
.features .card p {
  font-size: 0.95rem;
  color: #333;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #4f46e5;
  color: #fff;
  margin-top: 40px;
}
footer p {
  font-size: 0.9rem;
  margin-top: 10px;
}

/*# sourceMappingURL=main.css.map */
