/* ------------------------------------------- */
/* CSS 樣式：MSD Manual 藏文版風格 */
/* ------------------------------------------- */

/* 基礎設置 */
body {
    font-family: 'TibetProfessional', sans-serif;
    line-height: 1.7; /* 藏文排版行高要足夠 */
    color: #333;
    margin: 0;
    background-color: #f5f8fa; /* 淺藍灰背景 */
}

:root {
    --msd-blue: #0A3D62; /* 深藍色，專業感 */
    --msd-light-blue: #0073B7; /* 輔助藍色 */
    --msd-accent: #DAA520; /* 藏族金色/薑黃色作為點綴 */
    --msd-bg-white: #ffffff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* ------------------- 頂部與橫幅 ------------------- */
.msd-header {
    background: var(--msd-blue);
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.msd-logo {
    max-height: 60px;
    max-width: 100%;
    margin: 0;
    vertical-align: middle;
}

.edition {
    font-size: 0.9em;
    opacity: 0.8;
}

.hero-acceptance {
    background-color: var(--msd-light-blue);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-acceptance h1 {
    font-size: 2.2em;
    margin-bottom: 0.5em;
}

.sub-heading {
    font-size: 1.1em;
    opacity: 0.9;
}

/* ------------------- 核心內容塊 ------------------- */
.content-block {
    background: var(--msd-bg-white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.content-block h2 {
    color: var(--msd-blue);
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5em;
    margin-bottom: 1.5em;
    font-size: 1.6em;
}

.icon {
    color: var(--msd-light-blue);
    margin-right: 10px;
}

/* 推薦區塊的引言樣式 */
.msd-quote {
    background-color: #f7f7f7;
    border-left: 5px solid var(--msd-accent);
    padding: 1.5em;
    margin: 2em 0;
    font-style: italic;
    font-size: 1.1em;
}

.msd-quote footer {
    text-align: right;
    font-style: normal;
    font-weight: bold;
    margin-top: 10px;
    color: #666;
}

/* 核心價值點佈局 */
.value-points {
    display: flex;
    gap: 30px;
    text-align: center;
}

.value-item {
    flex: 1;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 5px;
    transition: box-shadow 0.3s;
}

.value-item h3 {
    color: var(--msd-light-blue);
    font-size: 1.2em;
}

/* CTA 按鈕 */
.cta-button {
    display: inline-block;
    background-color: var(--msd-light-blue);
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--msd-blue);
}

.large-cta {
    font-size: 1.2em;
    padding: 12px 30px;
    background-color: var(--msd-accent); /* 特別突出，使用金色 */
}

.large-cta:hover {
    background-color: #d19700;
}

/* ------------------- 頁腳 ------------------- */
.msd-footer {
    background: var(--msd-blue);
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* 響應式調整 */
@media (max-width: 768px) {
    .msd-header {
        flex-direction: column;
    }
    .value-points {
        flex-direction: column;
    }
}

/* 翻译益处部分优化 */
.team-block {
    background: var(--msd-bg-white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.team-block h2 {
    color: var(--msd-blue);
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5em;
    margin-bottom: 1.5em;
    font-size: 1.6em;
    display: flex;
    align-items: center;
}

.team-block .benefits-intro {
    font-size: 1.1em;
    margin-bottom: 1.8em;
    color: #555;
    line-height: 1.8;
}

.team-block .benefit-point {
    margin-bottom: 2em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #eee;
    line-height: 1.9;
}

.team-block .benefit-point:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.team-block .benefit-number {
    font-weight: bold;
    color: var(--msd-accent);
    font-size: 1.2em;
    margin-right: 8px;
}

.team-block .benefit-title {
    font-weight: bold;
    color: var(--msd-blue);
    margin-bottom: 0.8em;
    display: inline-block;
}

.team-block .benefit-content {
    color: #444;
    font-size: 1.05em;
    text-indent: 2em;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .team-block {
        padding: 25px;
    }
    
    .team-block .benefit-content {
        text-indent: 1.5em;
    }
}