.roadmap {
  padding: 80px 0;
  background-color: #ffffff;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.roadmap-card {
  background-color: #D0F8E1;
  border-radius: 10px;
  padding: 40px;
  height: 348px;
  display: flex;
  flex-direction: column;
}

.roadmap-tag {
  background-color: rgba(30, 207, 104, 0.5);
  border-radius: 5px;
  padding: 8px 16px;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 22.5px;
  color: #000000;
  text-align: center;
  width: 141px;
  margin-bottom: 32px;
}

.roadmap-content {
  flex: 1;
  font-family: 'Maven Pro', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 26.25px;
  color: #000000;
}

.roadmap-content p {
  margin-bottom: 12px;
}

.roadmap-content p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
  
  .roadmap-card {
    height: auto;
    padding: 24px;
  }
  
  .roadmap-tag {
    width: auto;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .roadmap-card {
    padding: 20px;
  }
  
  .roadmap-content {
    font-size: 13px;
    line-height: 20px;
  }
}
