.contact-sections--spaced {
    padding: 36px 20px 48px; /* 加大上方間距，避免被固定導覽遮到 */
    background: #fff;
}

.contact-column {
    max-width: 760px; /* 單欄 */
    margin: 0 auto;
    display: block; /* 強制單欄 */
}

.contact-card + .contact-card {
    margin-top: 18px; /* 卡片間距 */
}

.contact-card {
    background: #f9fcf9;
    border: 1px solid #e3efe3;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.08);
    overflow: hidden;
}

.contact-card__head {
    padding: 16px 16px 8px;
    text-align: center;
}

.contact-title {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    margin: 0;
}

.contact-title .title-zh {
    font-size: 20px;
    font-weight: 800;
    color: #2c5530;
    letter-spacing: .5px;
    line-height: 1.15;
}

.contact-title .title-en {
    font-size: 13px;
    color: #6b8e23;
    letter-spacing: .8px;
    text-transform: lowercase;
    font-weight: 500;
}

.contact-lead {
    margin-top: 8px;
    color: #5b6e5f;
    font-size: 14.5px;
    line-height: 1.6;
}

.contact-body {
    padding: 12px 14px 16px;
    text-align: center;
}

/* key-value 兩列 */
.kv2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
    justify-items: center;   /* 網格子項目水平置中 */
}

.kv2__item {
    display: inline-flex;     /* 保持內容緊湊並可置中 */
    align-items: center;
    justify-content: center;  /* 文字置中 */
    gap: 10px;
    background: #f4faf4;
    border: 1px solid #e2efe2;
    border-radius: 10px;
    padding: 8px 10px;
    text-align: center;
}

.kv2__label {
    color: #5f7a63;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.kv2__value {
    color: #2e5333;
    font-size: 15px;
    font-weight: 700;
}

/* 電話主行 */
.phone-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e6efe6;
    box-shadow: 0 2px 10px rgba(74, 124, 89, .06);
    color: #2f6f3a;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    margin: 0 auto;           /* 置中 */
}

.phone-main:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(74, 124, 89, 0.14);
    background: #f8fcf8;
}

.phone-icon {
    font-size: 18px;
    line-height: 1;
}

.phone-number {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: .5px;
}

.phone-name {
    color: #466a4f;
    font-size: 14.5px;
}

/* FB 按鈕 */
.fb-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #2f6f3a;
    color: #fff;
    text-decoration: none;
    border: 1px solid #2a5f33;
    box-shadow: 0 2px 10px rgba(47, 111, 58, .18);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    margin: 0 auto;           /* 置中 */
}

.fb-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(47, 111, 58, .28);
    background: #285e33;
}

.fb-icon {
    font-size: 16px;
    line-height: 1;
}

.fb-text {
    font-weight: 800;
    letter-spacing: .3px;
}

/* 裝飾列表與提示 */
.bullet.lite {
    list-style: none;
    margin: 12px 0 8px;
    padding: 0 0 0 12px;
    text-align: center;        /* 文字置中 */
}

.bullet.lite li {
    position: relative;
    display: inline-block;     /* 使每項可置中排列 */
    padding-left: 14px;
    margin: 4px 10px;          /* 置中排版的間距 */
    line-height: 1.8;
    color: #444;
    font-size: 14.5px;
    text-align: left;          /* 單項內仍維持良好閱讀 */
}

.bullet.lite li + li {
    margin-top: 4px;
}

.bullet.lite li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #6b8e23;
}

.contact-note {
    margin-top: 10px;
    padding: 10px 12px;
    background: #fff7e8;
    border: 1px solid #f3dfb7;
    color: #8a5b00;
    font-weight: 700;
    font-size: 14.5px;
    border-radius: 10px;
}

/* 頁面主題簡介（放在 nav 下方） */
.page-intro {
    padding: 108px 20px 24px;
    background: #ffffff;
    margin-top: 8px;
    text-align: center;
}

.page-intro__title {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.page-intro__title::before,
.page-intro__title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, rgba(74,124,89,.25), rgba(74,124,89,0));
    transform: translateY(-50%);
}
.page-intro__title::before { left: -56px; }
.page-intro__title::after  { right: -56px; transform: translateY(-50%) scaleX(-1); }

/* 與站內其他標題一致的字級與配色 */
.page-intro .title-zh {
    font-size: 24px;
    font-weight: 800;
    color: #2c5530;
    letter-spacing: .5px;
    line-height: 1.15;
}
.page-intro .title-en {
    font-size: 14px;
    color: #6b8e23;
    letter-spacing: .8px;
    text-transform: lowercase;
    font-weight: 500;
}

.page-intro__lead {
    margin-top: 10px;
    color: #5b6e5f;
    font-size: 15px;
    line-height: 1.6;
}

/* RWD */
@media (max-width: 768px) {
    .page-intro { padding: 108px 16px 20px; }
    .page-intro__title::before,
    .page-intro__title::after { width: 32px; }
    .page-intro .title-zh { font-size: 22px; }
    .page-intro .title-en { font-size: 13px; }
}

@media (max-width: 600px) {
    .contact-sections--spaced {
        padding: 36px 16px 40px;
    }

    .kv2 {
        grid-template-columns: 1fr;
    }

    .phone-number {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .page-intro { padding: 108px 14px 16px; }
    .page-intro__lead { font-size: 14px; }
}