.product {
  padding: 80px 20px;
}
.product .product-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.product .product-image,
.product .product-content {
  flex: 1;
}
.product .product-image {
  text-align: center;
}
.product .product-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  text-align: center;
}
.product .product-title {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.product .product-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}
.product .download {
  position: relative;
}
.product .download img {
  width: 50px;
}
.product .download::after {
  content: "";
  display: block;
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  top: 3px;
  left: 3px;
}
@media (max-width: 768px) {
  .product .product-wrap {
    flex-direction: column;
    gap: 30px;
  }
  .product .product-title {
    font-size: 32px;
  }
}
/*# sourceMappingURL=style2.css.map */