/* services.css */
.services-content {
    flex: 1;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* 服務分類按鈕、卡片、價格標籤等樣式 */
/* 完整樣式請參考前面的作品集和相簿結構 */


  a {
    color: black; /* 連結的顏色，例如深灰色 */
    text-decoration: none; /* 移除下劃線 */
  }

  /* 鼠標移到連結上時的顏色 */
  a:hover {
    color: blue;
    text-decoration: underline; /* 移上去時顯示下劃線 */
  }

  /* 已訪問過的連結顏色 */
  a:visited {
    color: purple; /* 已訪問過的連結顏色，例如紫色 */
  }

  /* 點擊連結時的顏色 */
  a:active {
    color: green; /* 點擊中時的顏色，例如綠色 */
  }