body {
  margin: 0;
  padding: 1em;
  font-family: "標楷體", DFKai-SB, "Microsoft JhengHei", serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: auto;
}

/*  頁面灰紅標題 */
.section-title {
  text-align: center;  
  font-size: 12pt;
  background-color: #AAAAAA; /* 淺灰色背景 */
  border-bottom: 2px solid red; /* 紅色底線 */
  padding: 0.5em 1em;
  margin: 1em 0;
  font-weight: bold;
}

/* 機關全銜或公文最大標題*/
header {
  text-align: center;
  font-size: 20pt;
  font-weight: bold;
  margin-bottom: 1em;
}

/* 主要資訊 */
.section p strong {
  font-size: 16pt;
  font-weight: bold;
}

/* 公文資訊 */
.doc-info p {
  font-size: 12pt;
  margin: 0.2em 0;
 line-height: 1.2; /* 原本是1.5，數值越小行距越窄 */
}

/* 公文主旨與說明 */
.section p {
  margin: 0.5em 0;
}

/* 條列清單 */
.section ul {
  margin-left: 2em;
  font-size: 12pt;
}

/* 政府機關資訊、活動場地 */
.agency-info {
  font-size: 8pt;
  text-align: right;
  margin-top: 1em;
  line-height: 1.2;
}

/* 頁尾資訊 */
footer {
  text-align: center;  
  font-size: 8pt;
  border-top: 1px solid #ccc;
  padding-top: 0.5em;
  margin-top: 2em;
  font-family: "Microsoft JhengHei", sans-serif;
}

/* 理事長簽名 */
.signature {
  text-align: center;
  font-size: 24pt;
  color: blue;
  margin-top: 2em;
  font-weight: bold;
  letter-spacing: 0.2em;
}

/* 注解小字靠左 */
.note1 {
  text-align: left;
  font-size: 8pt;
  margin-top: 2em;
}

/* 銀行資訊 */
.bank {
  text-align: left;
  font-size: 12pt;
  font-family: "Microsoft JhengHei", sans-serif;
  color: #8B0000;
  font-weight: bold;
  padding-left: 1.5em;
}


/* 超連結的正常狀態 */
a {
  color: #0066CC;
  text-decoration: none;
}
/* 滑鼠移過去（hover）時的狀態 */
a:hover {
  color: black;
  text-decoration: underline;
}

/* 響應式調整 */
@media (max-width: 768px) {
  body { padding: 0.5em; }
  header { font-size: 18pt; }
  .doc-info p, .section p strong { font-size: 14pt; }
  .doc-info p, .section ul { font-size: 10pt; }

  ul {
    padding-left: 0.2em;       /* 手機縮排明確設定，避免預設值干擾 */
    list-style-position: inside;
    margin-left: 0;
  }

  .signature { font-size: 18pt; }
  .agency-info { font-size: 9pt; }
}
