/* 약관 컨테이너 */
section {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
    color: #333;
    padding: 20px;
    font-size: 12px;;
  }
  
  /* 서문 */
  section > p:first-child {
    font-size: 15px;
    margin-bottom: 30px;
    color: #555;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }
  
  /* 주요 목록 스타일 */
  .ptitle-list {
    list-style: none;
    counter-reset: article-counter;
  }
  
  .ptitle-list > li {
    margin-bottom: 30px;
    counter-increment: article-counter;
  }
  
  h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    display: flex;
    align-items: center;
  }
  
  /* 소제목 목록 스타일 */
  .spmall-title-list {
    list-style: none;
    padding-left: 20px;
    counter-reset: item-counter;
    padding:0;
  }
  
  .spmall-title-list > li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    counter-increment: item-counter;
  }
  
  .spmall-title-list > li::before {
    content: counter(item-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
  }
  
  /* 세부 리스트 스타일 */
  .d-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .d-list > li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    color: #555;
  }
  
  .d-list > li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
  }
  
  /* 푸터 정보 */
  section + p {
    max-width: 900px;
    margin: 20px auto 5px;
    font-size: 14px;
    color: #777;
    text-align: right;
  }
  
  /* 링크 스타일 */
  a {
    color: #007bff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* 단락 스타일 */
  p {
    margin-bottom: 15px;
  }
  
  article {margin-bottom: 30px;}

  article p {
    margin-bottom: 15px;
    color: #555;
  }