section {
  width: 100%;
  max-width: 100%;
  background: #EFE9E3;
  border-radius: 10px;
  overflow: visible;
}
details {
  margin-bottom: 20px; /* 添加間隔 */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* 增強陰影效果 */
  background: #f0eae5; /* 確保背景顏色一致 */
  transition: transform 0.3s ease-in-out;
}
/*
details:hover {
  transform: scale(1.05); /* 當游標靠近時放大 
} */

summary {
  font-size: 1.15rem;
  font-weight: normal;
  color: #733621;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease-in-out; /* 增加變色過渡效果 */
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: '\25BC';
  font-size: 0.8em;
  color: #888;
  transition: transform 0.3s ease-in-out; /* 增加旋轉過渡效果 */
}
details[open] summary::after {
  content: '\25B2';
  transform: rotate(180deg);
}
summary:hover {
  color: #007BFF; /* 當游標靠近時變色 */
}
.content {
  padding: 10px 0;
  color: #555;
  line-height: 1.6;
}
.content p {
  margin: 0;
}