body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #0e0e0e;
  color: #f5f5f5;
}
header {
  background: #000;
  color: white;
  padding: 1rem;
  text-align: center;
}
nav a {
  margin: 0 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline;
}
main {
  padding: 2rem;
  text-align: center;
}
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  margin-top: 3rem;
}
.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background: #00b894;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #00a383;
}
.hero {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #1b1b1b, #0e0e0e);
  border-bottom: 1px solid #222;
}
.hero h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}
.features {
  padding: 2rem 1rem;
  background: #161616;
}
.features h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.feature {
  background: #1f1f1f;
  padding: 1.2rem;
  border-radius: 10px;
  max-width: 280px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.feature h4 {
  color: #00b894;
  margin-bottom: 0.5rem;
}
.feature p {
  color: #ccc;
  font-size: 0.95rem;
}
.trust {
  background: #121212;
  padding: 2rem 1rem;
}
.trust h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.trust p {
  color: #bbb;
  font-size: 1rem;
}
.rate-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.step-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.step-card {
  background: #1f1f1f;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  max-width: 300px;
  text-align: center;
  color: #ccc;
}

.step-card h4 {
  color: #00b894;
  margin-bottom: 0.5rem;
}

.rate-brand-block {
  background: #1f1f1f;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  max-width: 300px;
  text-align: center;
}

.rate-brand-block h4 {
  color: #00b894;
  margin-bottom: 0.5rem;
}

.rate-card {
  background: #2a2a2a;
  padding: 0.5rem;
  border-radius: 6px;
  margin-top: 0.5rem;
  color: #ccc;
}