/* VISION 2026 引路人計畫專案目標樣式 */
.project-goal-container {
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
    background: linear-gradient(to bottom, #f5f5f5, #dbe9f6); /* 柔和的淺灰藍漸層背景 */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #005a9e; /* 深藍色強調線 */
}

.project-goal-title {
    background: linear-gradient(to right, #004d99, #0073e6); /* 深藍至淡藍漸變 */
    color: #ffffff !important;
    padding: 12px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.project-goal-list {
    padding: 15px;
    font-size: 18px;
    color: #222; /* 深色文字 */
    text-align: left;
    line-height: 1.6;
}

.project-goal-list strong {
    color: #005a9e; /* 深藍色強調 */
}