body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #f8f9fa, #e9f5ec);
  color: #333;
}
.container {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-radius: 16px;
  text-align: center;
}
.logo {
  width: 160px;
  margin-bottom: 20px;
}
.actions button {
  padding: 12px 20px;
  margin: 10px;
  border: none;
  border-radius: 8px;
  background-color: #2ecc71;
  color: white;
  font-size: 16px;
  cursor: pointer;
}
.actions button:hover {
  background-color: #27ae60;
}
.section {
  text-align: left;
  margin-top: 30px;
  padding: 20px;
  background: #f4f8f6;
  border-radius: 12px;
}
.section h2 {
  color: #2c3e50;
}
.section ul {
  list-style-type: disc;
  padding-left: 20px;
}
.share-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 10px 16px;
  background: #2ecc71;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}
.footer-links {
  margin-top: 30px;
}
.footer-links a, .footer-links select {
  margin: 0 8px;
  color: #2980b9;
  text-decoration: none;
}