body {
  font-family: Arial, sans-serif;
  background: #f5f8ff;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.subheading {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-buttons button {
  background-color: #3498db;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.tab-buttons button.active {
  background-color: #2c3e50;
}

.comparison-table {
  background: white;
  border-radius: 10px;
  overflow-x: auto;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease-in-out;
}

.comparison-table.animate {
  opacity: 0;
}

.comparison-table.show {
  opacity: 1;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

th, td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

th {
  background: #f1f1f1;
  color: #333;
}

td i {
  margin-right: 8px;
  color: #3498db;
}

/* CTA Section */
.cta-section {
  margin-top: 40px;
  padding: 30px;
  background: #2c3e50;
  color: white;
  border-radius: 10px;
}

.cta-button {
  background-color: #f1c40f;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 1.6em;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .cta-button {
    width: 50%;
  }
}
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3e50;
  padding: 10px 20px;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}
.main-header .logo {
  font-size: 20px;
  font-weight: bold;
}
.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.navbar a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s;
}
.navbar a:hover {
  background-color: #1a252f;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #2c3e50;
    margin-top: 10px;
  }
  .navbar.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
