/* Reuse your existing styles + some specific additions */

.preview-wrapper {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 280px;
  max-width: 360px;
  flex: 1;
  border: 1px solid #e0e0e0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 16px;
  color: #333;
  transition: box-shadow 0.3s ease;
}

.preview-wrapper:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.download-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #007bff;
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
}

.download-btn:hover {
  background-color: #0056b3;
}

.comparison-section {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.tool-description {
  margin-top: -10px;
  margin-bottom: 20px;
  color: #555;
}

.tool-info {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  line-height: 1.7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tool-info h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.tool-info h3 {
  font-size: 18px;
  margin-top: 20px;
}

.tool-info ul {
  padding-left: 20px;
}

