body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

header {
  background: #cfe9e3;
  padding: 20px;
  text-align: center;
}

nav {
  text-align: center;
  margin: 20px 0;
}

nav a {
  text-decoration: none;
  margin: 0 10px;
  color: #333;
}

section {
  padding: 20px;
  text-align: center;
}

form {
  display: inline-block;
  text-align: left;
  max-width: 400px;
  width: 100%;
}

input, textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
}

img {
  margin: 10px;
  border-radius: 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  padding: 20px;
}

.product-card {
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  width: 90%;
  max-width: 300px;
  background-color: #fefefe;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.livestream-area {
  margin-top: 20px;
}

.livestream-area h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.livestream-content iframe {
  max-width: 100%;
  border-radius: 10px;
}
