/* 基本排版與背景 */
.ai-gen-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #333;
    animation: fadeIn 1s ease-in-out;
}

/* 主標題 */
.ai-gen-title {
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--theme-color, #2c3e50);
}

/* 產品與服務描述 */
.ai-gen-desc,
.ai-gen-about-desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

/* 產品與服務項目：卡片式 */
.ai-gen-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* 單一項目 */
.ai-gen-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 項目標題 */
.ai-gen-item-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #34495e;
}

/* 項目描述 */
.ai-gen-item-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* 圖片樣式 */
.ai-gen-item-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 關於我們分段 */
.ai-gen-about-item {
    margin-bottom: 25px;
}

/* 關於我們小標題 */
.ai-gen-about-subtitle {
    font-size: 28px;
    color: #2980b9;
    margin-bottom: 10px;
}

/* 聯絡資訊社交平台 */
.ai-gen-social {
    margin-top: 20px;
}
.ai-gen-social p {
    margin-bottom: 5px;
    font-size: 16px;
}
.ai-gen-social a {
    color: #3498db;
    text-decoration: none;
}
.ai-gen-social a:hover {
    text-decoration: underline;
}

/* 淡入動畫 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 響應式設計 */
@media (max-width: 768px) {
    .ai-gen-items {
        grid-template-columns: 1fr;
    }
}
