/* 太陽能頁面樣式 */
.solar-page {
    padding-bottom: 60px;
}

/* 頁面首圖 */
.page-hero {
    background-color: var(--primary-green);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* 通用容器與標題 */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin: 60px 0 40px;
    font-size: 2rem;
    color: var(--primary-green);
}

/* 趨勢說明 */
.trend-content {
    line-height: 1.8;
    color: var(--text-body);
}

.trend-content p {
    margin-bottom: 20px;
}

/* 服務特色 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

/* 建置流程圖 */
.process-image {
    text-align: center;
    margin-bottom: 10px;
}

.source-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}
