* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
header {
  background: linear-gradient(135deg, #dfd0ef 0%, #001d2b 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

header h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background: #ff6b6b;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ff5252;
  transform: translateY(-2px);
}

.features {
  padding: 80px 0;
  background: #f9f9f9;
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature h3 {
  color: #6a11cb;
  margin-bottom: 15px;
}

.how-it-works, .testimonials {
  padding: 60px 0;
  text-align: center;
}

.testimonials blockquote {
  font-style: italic;
  margin: 20px 0;
  font-size: 1.2rem;
  color: #555;
}

footer {
  background: #333;
  color: #ccc;
  text-align: center;
  padding: 30px 0;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
