
.icon-wrapper {
  background-color: red;
  color: red;
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.feature-box:hover .icon-wrapper {
  background-color: #c44d02;
}

.feature-box h5 {
  margin-top: 10px;
}

.feature-box p {
  font-size: 0.95rem;
}

.plan-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.plan-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

