 /* 各階段顏色設定 */
.bud {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.thriving {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.ripe {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.sustainable {
    background: linear-gradient(135deg, #16a085, #1abc9c);
}

.local {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

/* 內容區塊樣式 */
.content-section {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #2c3e50;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #3498db;
}

/* 功能與目標區塊 */
.feature-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-box h4 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.feature-box h4 i {
    margin-right: 10px;
    color: #3498db;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #2ecc71;
    width: 20px;
    text-align: center;
}

/* 計畫卡片樣式 */
.plan-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.plan-card .card-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.plan-card .card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.plan-card:hover .card-img-container img {
    transform: scale(1.05);
}

.plan-card .card-body {
    padding: 25px;
}

.plan-card .card-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.4rem;
}

.plan-card .card-text {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.plan-card .card-footer {
    background-color: transparent;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-card .organization {
    color: #95a5a6;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.plan-card .organization i {
    margin-right: 5px;
}

.plan-card .btn-more {
    color: #3498db;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.plan-card .btn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.plan-card .btn-more:hover {
    color: #2c3e50;
    text-decoration: none;
}

.plan-card .btn-more:hover i {
    transform: translateX(3px);
}

/* 動畫效果 */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RWD */
@media (max-width: 767.98px) {
    .content-section {
        padding: 20px;
    }

    .feature-box {
        padding: 20px;
    }

    .plan-card .card-img-container {
        height: 180px;
    }
}
