.question_title{
    margin-top: 30px;
    font-size: 40px;
    text-align: center;
    font-weight: 500;
}
.section-box {
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1350px;
}
.tab-buttons {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}
.tab-btn {
    padding: 10px 20px;
    min-width: 220px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}
.tab-btn:hover, .tab-btn.active-tab {
    background-color: #385a47;
    color: rgb(255, 255, 255);
    font-weight: bold;
}
/* 整個手風琴容器：寬度與位置 */
#accordionFlushExample , #accordionFlushIng{
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 外框：像一整塊卡片 */
.accordion {
    background-color: #fcfffa;
    border-radius: 0.25rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* 每一項目之間不要大空隙 */
.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}
.accordion-item:last-child {
  border-bottom: none;
}

/* 上面那條可以不要 margin */
.accordion-item + .accordion-item {
  margin-top: 0;
}

/* 標題按鈕區 */
.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  font-size: 20px;
  font-weight: 500;
  background-color: #fcfffa;
  border: none;
  cursor: pointer;
  outline: none;
}

/* 收合狀態的顏色（類似官方） */
.accordion-button.collapsed {
  background-color: #fcfffa;
}

/* hover 效果 */
.accordion-button:hover {
  background-color: #fcfffa;
}

/* 右邊的小箭頭（純 CSS 畫出來） */
.accordion-button::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);          /* 收合：箭頭向下 */
  transition: transform 0.2s ease;
  margin-left: 0.5rem;
}

/* 展開時：箭頭往上 */
.accordion-button:not(.collapsed)::after {
  transform: rotate(-135deg);
}

/* 內容容器：用 JS 設定 height，比 max-height:1000px 順很多 */
.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

/* 展開時給 show class，JS 會同時調 max-height
.accordion-collapse.show { */
  /* max-height 會在 JS 裡動態設定 
}*/

/* 內文樣式 */
.accordion-body {
  padding: 1rem 1.25rem;
  font-size: 18px;
  line-height: 1.7;
  background-color: #ecf3e9;
}
a {
    text-decoration: none;   /* 去除底線 */
    color: green;          /* 保持原文字顏色（不會變藍） */
}
a:hover {
    text-decoration: underline;  /* 滑鼠移上去如果要再出現底線可留這行；不想要就刪掉 */
    color: #385a47;
}



.table01{
    margin-left: auto;
    margin-right: auto;
    border: #555555 solid 1px;
    border-collapse: collapse;
    width: 100%;
    max-width: 1000px;
}
.table01 tr, .table01 th, .table01 td{
    border: #555555 solid 1px;
}
.table01 p{
    margin-left: 5px;
}