/* about.css */
.about-content {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* 時間軸、團隊成員、核心價值等樣式 */
  a {
    color: white; /* 連結的顏色，例如深灰色 */
    text-decoration: none; /* 移除下劃線 */
  }

  /* 鼠標移到連結上時的顏色 */
  a:hover {
    color: red;
    text-decoration: underline; /* 移上去時顯示下劃線 */
  }


  /* 點擊連結時的顏色 */
  a:active {
    color: green; /* 點擊中時的顏色，例如綠色 */
  }