.container {
  position: relative;
  width: 100%;
  height: auto;
  background: black;
  color: white;
}

.container .text {
  text-align: center;
  margin: auto;
  box-sizing: border-box;
  padding: 20px;
}

.container .imageBg {
  position: relative;
  width: 100%;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.container .imageBg img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 1024px) {
  .container .imageBg img {
    width: 160%;
    height: auto;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }
}

.container .content .titleM {
  margin-top: 30px;
}

.container .content ul {
  padding-left: 20px;
  /* 调整左边距 */
  margin-left: 0;
  /* 重置外边距 */
}

.container .content li {
  margin-left: 0;
}

.container .subtitle {
  margin-top: 20px;
}

.container .comment {
  max-width: 1000px;
  font-size: 16px;
  text-align: center;
  margin: auto;
  margin-top: 20px;
  opacity: 0.5;
}

.container .content {
  max-width: 1000px;
  font-size: 16px;
  text-align: left;
  margin: auto;
  margin-top: 50px;
}

.container .spec {
  max-width: 1000px;
  font-size: 16px;
  text-align: center;
  margin: auto;
  margin-top: 50px;
}

.container .spec .line {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #333;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.container .imageStack {
  position: relative;
  /* Position the image stack relatively */
  width: 100%;
  /* Full width */
}

.container .imageStack img {
  width: 100%;
  /* Make the image responsive */
  height: auto;
  /* Maintain aspect ratio */
  object-fit: contain;
  /* Ensure the image fits within the container */
  z-index: 999;
}

.container .imageStack .image {
  position: absolute;
  /* Position images absolutely */
  top: 0;
  /* Align to the top */
  left: 0;
  /* Align to the left */
  width: 100%;
  /* Full width for each image */
}

.dividedShow {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 50%;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  /* Centers the halfBox horizontally */
  align-items: first;
  /* Centers the content vertically */
}

.dividedShow .box {
  flex: 1;
  /* Make each halfBox take up equal space */
  max-width: 600px;
  /* Restrict each halfBox to take up half the container width */
  box-sizing: border-box;
  /* Ensure padding does not affect width */
  background: #151515;
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 40px;
}

/* Media query for window width smaller than 1024px */
@media (max-width: 1024px) {
  .dividedShow {
    flex-direction: column;
    /* Stack the boxes in a column */
    align-items: center;
    /* Center the boxes horizontally */
  }

  .dividedShow .box {
    max-width: calc(100% - 60px);
    /* Ensure the boxes take up full width in column layout */
    margin: auto;
    margin-bottom: 20px;
    /* Add some space between stacked boxes */
  }

  .dividedShow .box2 {
    max-width: 100%;
    /* Ensure the boxes take up full width in column layout */
    min-height: 450px;
    margin: auto;
    margin-bottom: 20px;
    /* Add some space between stacked boxes */
  }
}

.dividedShow .box .image img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.dividedShow .box .icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: auto;
  background-size: contain;
  margin-bottom: 30px;
}

.dividedShow .box .title {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.09em;
}

.dividedShow .box .description {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 20px;
}

/*  */

.dividedShow .box2 {
  flex: 1;
  /* Make each halfBox take up equal space */
  width: 90%;
  max-width: 600px;
  /* Restrict each halfBox to take up half the container width */
  min-height: 600px;
  box-sizing: border-box;
  /* Ensure padding does not affect width */
  background: black;
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 2%;
  margin-bottom: 0;
  border: 1px solid #333;
  background-size: cover;
  /* This ensures the image covers the entire div */
  background-position: center 50px;
  /* This centers the image */
  background-repeat: no-repeat;
}

.dividedShow .box2 .textBgTopDown {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, transparent 100%);
  padding: 20px;
}

.dividedShow .box2 .title {
  width: 100%;
  height: auto;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.09em;
}

.dividedShow .box2 .description {
  width: 100%;
  height: auto;
}

.sliderShow {
  width: 100%;
}

.sliderShow .image {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.sliderShow .image img {
  width: 100%;
  height: 100%;
}

.container .klaviyoBar {
  width: calc(100% - 60px);
  max-width: 650px;
  height: auto;
  margin: auto;
  /* background: yellow; */
}

.container .inputZone {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  margin-top: 50px;
  text-align: center;
}

.container .inputZone .line {
  width: 100%;
  margin: auto;
  margin-top: 20px;
}

.container .inputZone input {
  width: calc(100% - 60px);
  max-width: 800px;
  height: 60px;
  border: none;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 10px 15px;
  outline: none;
  background: rgb(227, 227, 227);
  font-size: 22px;
  font-family: "Space Grotesk", sans-serif;
  -webkit-appearance: none;
  /* Remove default styling on iOS */
  appearance: none;
  /* Remove default styling on other browsers */
}

.container .inputZone button {
  width: 50%;
  min-width: 200px;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  border: none;
  padding: 10px;
  background-color: rgb(224, 207, 0);
  color: black;
  cursor: pointer;
  font-size: calc(10px + 1vw);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-family: "Space Grotesk", sans-serif;
  transition: 0.2s;
}

.container .inputZone input::placeholder {
  color: #aaa;
  /* Placeholder text color */
}

.container .inputZone button:hover {
  color: rgb(21, 44, 0);
  background-color: #fcee52;
  /* Optional: Darken button on hover */
}