body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
}
.header {
  background: #f4f4f4;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 50px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: bold;
}
.hero {
  text-align: center;
  padding: 50px 20px;
  background: #e8f5e9;
}
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #00bfa5;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #009e87;
}
.features, .templates, .monetisation, .cta {
  padding: 40px 20px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-list li {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.feature-list li:hover {
  transform: scale(1.02);
}
.template-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.template-card {
  flex: 1;
  min-width: 200px;
  background: #fafafa;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}
.template-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.fade-in {
  animation: fadeIn 1s ease-in forwards;
  opacity: 0;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.footer {
  text-align: center;
  padding: 20px;
  background: #f0f0f0;
  font-size: 14px;
}
