.terms-container {
  max-width: 1100px;
  margin: auto;
  background-color: #ffffff;
  padding: 30px;
  /* border: 1px solid #ddd; */
  border-radius: 6px;
  line-height: 1.7;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.terms-container p {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 16px;
}

.terms-container .bold {
  font-weight: bold;
}
.cards-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 15px;
}

.card {
  background-color: #fff;
  border-radius: 12px; /* smoother corners */
  width: 100%;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px 30px;
  text-align: center;
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.08); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px); /* lift effect */
  box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* stronger hover shadow */
}

.card img {
  width: 100%;
  height: 250px; /* adjust as needed */
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 18px;
  background: #f9f9f9; /* subtle bg for padding area */
}


.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 10px 0 20px;
  line-height: 1.4;
  min-height: 50px; /* keeps heading aligned */
}

.btn-wrapper {
  text-align: center;
  margin-top: auto;
}

#connectBtn {
  padding: 10px 28px;
  background-color: #cc1013;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

#connectBtn:hover {
          background-color: #212e65;

  transform: scale(1.05);
}

/* Responsive fixes */
@media (max-width: 992px) {
  .cards-section {
    gap: 20px;
  }
  .card {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .cards-section {
    flex-direction: column;
    align-items: center;
  }
  .card {
    max-width: 100%;
  }
}

