.remain-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  overflow-x: hidden;
  box-sizing: border-box;
}

.remain-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.remain-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.remain-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  min-height: 600px;
  box-sizing: border-box;
}

.remain-knife {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-25deg);
  z-index: 3;
}

.remain-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  position: relative;
}

.remain-text {
  max-width: 422px;
  text-align: center;
  margin-bottom: 40px;
  z-index: 3;
}

.remain-main-text {
  font-family: 'Avenir Next W1G', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}

.remain-final-text {
  font-family: 'Avenir Next W1G', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  margin-top: 30px;
}

.remain-polaroids {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.polaroid-card {
  position: absolute;
}

.polaroid-left {
  left: -100px;
  top: 100px;
  transform: rotate(-13deg);
}

.polaroid-right {
  right: -100px;
  top: 50px;
  transform: rotate(26deg);
}

.polaroid-image {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .remain-container {
    padding: 50px 20px;
  }

  .remain-knife {
    left: 15px;
  }

  .knife-image {
    max-width: 150px;
  }

  .polaroid-left {
    left: -80px;
  }

  .polaroid-right {
    right: -80px;
  }
}

@media screen and (max-width: 768px) {
  .remain-container {
    padding: 40px 20px;
    min-height: 400px;
  }

  .remain-knife {
    display: none;
  }

  .remain-text {
    margin-bottom: 30px;
  }

  .remain-main-text {
    font-size: 14px;
  }

  .remain-final-text {
    font-size: 20px;
    margin-top: 20px;
  }

  .remain-polaroids {
    position: relative;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
  }

  .polaroid-card {
    position: relative;
    flex: 1;
  }

  .polaroid-left {
    left: 0;
    top: 0;
    transform: rotate(-8deg);
  }

  .polaroid-right {
    right: 0;
    top: 0;
    transform: rotate(8deg);
  }

  .polaroid-image {
    max-width: 200px;
  }
}

@media screen and (max-width: 480px) {
  .remain-container {
    padding: 30px 15px;
  }

  .remain-text {
    margin-bottom: 20px;
  }

  .remain-main-text {
    font-size: 13px;
  }

  .remain-final-text {
    font-size: 18px;
  }

  .remain-polaroids {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .polaroid-card {
    max-width: 250px;
  }

  .polaroid-left,
  .polaroid-right {
    position: relative;
    left: 0;
    right: 0;
  }

  .polaroid-image {
    max-width: 100%;
  }
}
