body {
  font-family: "Inter", sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  overflow-x: hidden;
}
.nav-link {
  transition: color 0.3s ease, transform 0.3s ease;
}
.nav-link:hover {
  color: #0077b6;
  transform: translateY(-2px);
}
header {
  transition: all 300ms ease-in-out;
}
.animated-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.animated-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.chart-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  height: 350px;
}
.link {
  font-weight: 800;
}
.link:hover {
  text-decoration: underline;
}
section:not(section#hero) {
  padding-inline: 5rem;
}

@media (max-width: 768px) {
  section:not(section#hero) {
    padding-inline: 1rem;
  }
}

@media (min-width: 768px) {
  .chart-container {
    height: 400px;
  }
}

/* Styling for the new workflow visualization canvas */
#workflowCanvas {
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  display: block;
}

/* Styling for the new demo section */
.demo-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.demo-item {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.demo-item img {
  width: 100%;
  height: auto;
  display: block;
}
