/* --- serviceslist.php 專屬樣式 --- */

.bx-chevron-down:before {
    content: ""; /* 這個規則移除了 icon，請確認是否為預期效果 */
}

.faq .faq-list i {
    font-size: 14px;
}

/* h3 全域設定，如果 main.css 已有，可考慮合併或移除 */
h3 {
    font-size: 1.17em;
    font-weight: 700;
}

.blog-section .post-entry .post-thumbnail img {
    border-radius: 20px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

/* 建議：將這個 a 的全域設定移到 main.css */
a {
    color: #545454;
}

/* 服務列表圖片樣式 (原本的 .card-img.shadow) */
.service-list-img {
    width: 100%; /* 確保圖片寬度 */
    height: auto; /* 高度自動 */
    transition: transform 0.3s ease; /* 加上一點 hover 效果 */
    border-radius: 8px; /* 加上一些圓角 */
}

.service-list-img:hover {
    transform: scale(1.05); /* 滑鼠移過時放大 */
}