body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  font-weight: 700;
  color: #3949ab;
  text-decoration: none;
}

.logo-img {
  height: 80px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #3949ab;
}

.hero {
  background: linear-gradient(135deg, #5c6bc0, #3949ab);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 3rem;
}

.hero-img {
  width: 260px;
  margin-top: 20px;
  border-radius: 8px;
  animation: float 3s ease-in-out infinite;
}

.features {
  padding: 60px 20px;
  text-align: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.feature-list li {
  margin-bottom: 10px;
}

.integration {
  padding: 60px 20px;
  text-align: center;
}

.integration img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
}

.chatbots {
  padding: 60px 20px;
  text-align: center;
}

.chatbots img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
}

.comparison {
  background: #f7f7f7;
  padding: 60px 20px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.compare-table th {
  background: #e0e0e0;
}

.compare-table tr:hover {
  background: #e3f2fd;
  transition: background 0.3s;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #3949ab;
  color: #fff;
}

.pricing {
  padding: 60px 20px;
  text-align: center;
}

.message-input {
  margin-top: 20px;
  padding: 8px;
  width: 160px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.price-table th {
  background: #e0e0e0;
}

.price-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #555;
}

.contact {
  padding: 60px 20px;
  text-align: center;
}

.contact a {
  color: #3949ab;
  text-decoration: none;
}

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

.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.slide-up {
  opacity: 0;
  animation: slideUp 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
