/* --- 表單下載頁面樣式 --- */
.forms-container {
    width: 100%;
    margin: 0 auto;
    font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
    color: #333;
}

.page-title {
    font-size: 2em;
    color: #c2242d;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.forms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden; /* 確保圓角效果 */
}

.form-item, .form-category {
    padding: 15px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.forms-list > li:last-child {
    border-bottom: none;
}

.form-item {
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.form-item:hover {
    background-color: #f9f9f9;
}

.form-category {
    background-color: #f5f5f5;
    font-weight: bold;
}
.form-category .item-title {
    font-size: 1.2em;
    color: #333;
}

.item-icon {
    font-size: 1.5em;
    margin-right: 15px;
}

.item-title {
    flex-grow: 1; /* 讓標題佔據大部分空間 */
    font-size: 1.1em;
    color: #333;
}

.download-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #c2242d;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s;
    flex-shrink: 0; /* 防止按鈕被壓縮 */
    margin-left: 15px;
}

.download-btn:hover {
    background-color: #a01c23;
}

/* 子列表樣式 */
.sub-list {
    list-style: none;
    padding: 15px 0 0 0;
    margin: 15px 0 0 0;
    border-top: 1px solid #ddd;
}
.sub-list .form-item {
    background-color: #fff;
    padding-left: 30px; /* 增加內縮 */
}

/* --- 響應式設計：手機版 --- */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.6em;
    }
    .form-item, .form-category {
        flex-direction: column; /* 垂直堆疊 */
        align-items: flex-start; /* 從頭對齊 */
    }
    .item-icon {
        display: none; /* 在手機上可以隱藏圖示以節省空間 */
    }
    .item-title {
        margin-bottom: 10px; /* 標題和按鈕間增加間距 */
        font-size: 1em;
    }
    .download-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        margin-left: 0;
    }
    .sub-list .form-item {
        padding-left: 15px;
    }
}