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

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #0c0c2c;
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

header {
  background: #0c0c2c;
  padding: 20px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  /* list-style: none; */
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  /* text-decoration: none; */
}

.hero {
  text-align: center;
}

.hero-img {
  max-width: 100%;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2rem;
  margin: 20px 0;
}

.hero p {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 20px;
}

.btn {
  background-color: #63e1d9;
  padding: 12px 30px;
  border-radius: 25px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.features .feature img {
  height: 60px;
  margin-bottom: 15px;
}

.productive {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.productive-text {
  flex: 1;
}

.productive img {
  flex: 1;
  max-width: 100%;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial {
  background-color: #202040;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 280px;
}

.testimonial .user-info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.testimonial img {
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.cta {
  text-align: center;
  background-color: #1c1c3b;
  padding: 60px 20px;
  border-radius: 10px;
}

.cta input {
  padding: 12px;
  width: 250px;
  border: none;
  border-radius: 25px;
  margin-right: 10px;
}

footer {
  background-color: #0a0a23;
  padding: 40px 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #aaa;
  /* text-decoration: none; */
}
