
/* styles.css - Index page specific */

.hero {
  text-align: center;
  padding: 4em 1em;
  background: #f9f9f9;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 0.5em;
}

.hero-desc {
  font-size: 1.1rem;
  color: #555;
}

.btn-primary {
  display: inline-block;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  font-weight: 500;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 2em 0;
}

.feature {
  text-align: center;
  margin: 1em;
}

.feature-icon {
  width: 48px;
  height: 48px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1em;
}

.use-case-img {
  width: 100%;
  border-radius: 4px;
}

.use-case-title {
  font-weight: 500;
  margin-top: 0.5em;
}

.use-case-desc {
  color: #555;
}

.use-cases-btn-row {
  text-align: center;
  margin: 2em 0;
}
