
body {
  font-family: 'Pretendard', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

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

.benefit-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 100px;
}

.benefit-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 96 / 102;
  margin: 150px auto;     /* 위아래 여백 추가 */
  padding: 0 20px;        /* 좌우 여백 추가 */
}

.benefit-container picture {
  display: block;
  width: 100%;
}

.background-image {
  width: 100%;
  height: auto;
  display: block;
}

.benefit-item {
  position: absolute;
  width: 18%;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: #222;
  z-index: 1;
  transform: translate(-50%, -50%);
  text-align: center;
}

.benefit-item small {
  display: block;
  font-weight: normal;
  color: #444;
  margin-top: 4px;
  font-size: 0.85rem;
}

/* 좌표는 백분율 기준 (960x1020 기준) */
.benefit-item.top          { top: 2%; left: 68%; } /* 강력한 흡입력 */
.benefit-item.top-right    { top: 32%; left: 99%; } /* 조용한 청소 */
.benefit-item.right        { top: 63%; left: 98%; } /* 경제성 */
.benefit-item.bottom-right { top: 93%; left: 68%; } /* 간단하고 편리한 청소 */
.benefit-item.bottom       { top: 93%; left: 35%; } /* 깨끗하고 쾌적한 실내유지 */
.benefit-item.bottom-left  { top: 63%; left: 3%; } /* 다양한 청소도구배치 */
.benefit-item.left         { top: 32%; left: 5%; } /* 각종 안전장치 */
.benefit-item.top-left     { top: 2%; left: 35%; } /* 무선 원격조정 */

@media (max-width: 768px) {
  .benefit-container {
    display: block;
    padding: 0 16px;
    text-align: center;
    aspect-ratio: auto;
  }

  .background-image {
    display: none;
  }

  .benefit-item {
    display: none;
  }

  .benefit-container picture img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}
