
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.container {
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.mockup {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
h1 {
  font-size: 28px;
  color: #333;
}
p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn {
  text-decoration: none;
  background: #ff5722;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  transition: background 0.3s;
}
.btn:hover {
  background: #e64a19;
}
