.digital-products-section {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
  margin-top: 150px;
  margin-bottom: 50px;
}

.section-title {
  text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
      color: #6518ff;
}

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-card {
  background: #fdfdfd;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  width: 280px;
  padding: 25px;
  transition: 0.3s;
  text-align: right;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 1.2rem;
  color: #005580;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
}

.product-card .price {
  color: #27ae60;
  font-weight: bold;
  margin: 10px 0;
}

.product-card button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: bold;
  width: 100%;
  transition: background 0.3s;
}

.product-card button:hover {
  background-color: #0056b3;
}
