* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #ecece4;
  color: #333;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  background-color: #fffaf0;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.container p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.logo {
  max-width: 180px;
  margin-bottom: 20px;
}

h1, h2 {
  margin-bottom: 15px;
  color: #444;
}

p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.description p {
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: left;
  color: #333;
  font-size: 1rem;
}

h2 {
  color: #009cb5;
  margin-bottom: 15px;
}

.title-main {
  font-size: 2rem;
  font-weight: bold;
}

.title-sub {
  font-size: 1.5rem;
  font-weight: normal;
  display: block;
}

.product-menu {
  text-align: center;
  margin: 20px 0;
}

.product-menu a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  padding: 10px 15px;
  background-color: #e0e0e0;
  border-radius: 4px;
  color: #333;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.product-menu a:hover {
  background-color: #ccc;
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.gallery p {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #555;
  margin: 20px 0;
}

.thumb-card {
  max-width: 150px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.thumb-card:hover {
  transform: scale(1.05);
}

.download-button, .back-button {
  display: inline-block;
  text-decoration: none;
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  margin: 10px 5px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.download-button:hover, .back-button:hover {
  background-color: #45a049;
}

.product-gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.product-card {
  text-align: center;
  max-width: 180px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.product-thumb {
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.product-card a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}
.product-name {
  background-color: #009bb5;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  border-radius: 0 0 8px 8px;
}

.coming-soon {
  text-align: center;
  margin-top: 20px;
}

.gallery.coming-soon img.coming-soon-image {
  width: 150px
  border: 3px solid #009cb5;
  border-radius: 12px;
  display: block;
  margin: 10px auto;
  box-sizing: border-box;
  max-width: 100%;
}

.coming-soon-image {
  max-width: 100%;
}

.coming-soon-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #009cb5;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #777;
}
