* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background-color: #f8f9fa;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  background-color: #8769e9;
  color: white;
  padding: 30px 20px;
  text-align: center;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.logo img {
  max-height: 60px;
  margin-right: 15px;
}
.logo span {
  font-size: 28px;
  font-weight: bold;
  color: white;
}
header h1 {
  font-size: 28px;
  margin-bottom: 5px;
}
header p {
  font-size: 16px;
  color: #ccc;
}
.main-content {
  flex: 1;
  padding: 50px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #e9ecef);
  text-align: left;
  flex-wrap: wrap;
}
.main-content img {
  max-width: 300px;
  border-radius: 10px;
  margin: 20px;
}
.content-text {
  max-width: 500px;
  margin: 20px;
}
.content-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.content-text p {
  font-size: 16px;
  margin-bottom: 15px;
}
.price {
  font-size: 22px;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 20px;
}
.buy-button {
  display: inline-block;
  margin-bottom: 10px;
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  text-align: center;
}
.buy-button:hover {
  background-color: #0056b3;
}
footer {
  background-color: #8769e9;
  color: white;
  padding: 30px 20px;
}
footer p {
  margin: 6px 0;
}
footer iframe {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border: 0;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    text-align: center;
  }
  .content-text {
    text-align: center;
  }
}
