#target-section1 {
  background-color: rgb(210, 200, 191);
  position: relative;
  width: 100%;
  min-height: 1200px;
  overflow: hidden;
  padding: 60px 20px;
  display: flex;
  align-items: center;
}

#target-section1 .bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: none;
}

#target-section1 .container {
  position: relative;
  z-index: 2;
}

.image-section {
  position: relative;
  width: 100%;
  min-height: 1200px; /* 기본 높이 */
  overflow: hidden;
  padding: 60px 20px;
  display: flex;
  align-items: center;
}

.bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-text {
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 0 20px;
}

.container.hydrogen-img {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1296px;
  width: 100%;
}

.paragraph-main {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
}

.highlight-hydrogen {
  color: #ADD8E6;
  font-weight: bold;
}

.usage-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.usage-title {
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* 아이콘 포함 항목 */
.usage-list li:not(.usage-title) {
  font-size: 26px;
  color: #ADD8E6;
  margin-bottom: 0.6rem;

  position: relative;
  padding-left: 1.8em;         /* 아이콘 공간 확보 */
  line-height: 1.6;
  text-indent: 0;            /* 들여쓰기는 제거 */
  word-break: keep-all;
}

/* ✔ 마크 삽입 */
.usage-list li:not(.usage-title)::before {
  content: "\2714";   /* ✔ 체크 마크 */
  position: absolute;
  left: 1rem;
  top: 0.1em;                /* 약간 내려 정렬 */
  color: #ADD8E6;
  font-size: 20px;
  line-height: 1.6;
}

.main-section-title {
  font-size: 50px;
  font-weight: bold;
  margin-top: 100px;  /* 모바일에서는 좀 더 위쪽 공간 확보 */
  margin-bottom: 150px; /* 아래 여백도 줄임 */
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .image-section {
    height: auto;
    padding: 40px 20px;
  }

  .bg-img {
    height: 600px;
  }

  .overlay-text {
    font-size: 1.2rem;
  }

  .paragraph-main {
    font-size: 18px;
  }

  .usage-title {
    font-size: 20px;
  }

  .usage-list li:not(.usage-title) {
    font-size: 18px;
    padding-left: 2.4em;
  }

    .usage-list li:not(.usage-title)::before {
      top: 0;                   /* 마크 위치 살짝 위로 조정 */
      font-size: 20px;
    }
}

/* 배경 이미지 타이틀 관련 */
@media (max-width: 576px) {
  .main-section-title {
    margin-top: 50px;  /* 모바일에서는 좀 더 위쪽 공간 확보 */
    font-size: 28px;    /* 폰트 크기도 줄여서 부담 완화 */
    margin-bottom: 50px; /* 아래 여백도 줄임 */
  }
}