/* General */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background: #f8f9fb;
  color: #333;
}

/* Hero */
.ds-hero {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.ds-hero h1 {
  font-size: 2.5rem;
  color: rgb(0, 255, 255);
}
.ds-hero p {
  margin: 20px auto;
  max-width: 700px;
}
.ds-hero .btn {
  background: #ff9800;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* About */
.ds-about {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
}
.ds-about h2 {
  margin-bottom: 15px;
  font-size: 2rem;
}

/* Roadmap */
.ds-roadmap {
  padding: 50px 20px;
  background: #f1f5f9;
  text-align: center;
}
.roadmap-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}
.roadmap-step {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 1 1 200px;
  max-width: 250px;
  font-weight: bold;
}

/* Fees */
.ds-fees {
  padding: 50px 20px;
  text-align: center;
}
.fee-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.fee-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
}
.fee-card h3 {
  color: #2a5298;
}
.fee-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}
.fee-card ul li::before {
  content: "✔ ";
  color: green;
}
.price {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #e53935;
}
.fee-card .btn {
  display: inline-block;
  background: #2a5298;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
}


