    /* ============================================================
       Contact Us 页面专用样式
       ============================================================ */

    .contact-bar {
        display: block;
        margin: 40px auto 0;
        background-color: #1F3F1D;
        padding: 20px 0 40px;
        width: 80%;
        border-radius: 25px;
        text-align: center;
    }

    .contact-bar h2 {
        color: #ffffff;
        font-size: var(--font-title);
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-weight: normal;
        text-align: center;
    }

    .contact-bar p {
        width: 80%;
        margin: 20px auto 0;
        color: #ffffff;
        font-size: var(--font-text);
        line-height: 1.5;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-weight: normal;
        text-align: center;
    }

    /* ============ 主内容：信息卡 + 表单 ============ */
    .contact-main {
        display: flex;
        gap: 30px;
        align-items: stretch;
        width: 80%;
        margin: 40px auto 0;
        box-sizing: border-box;
    }

    .contact-card {
        flex: 1;
        min-width: 0;
        box-sizing: border-box;
        background-color: #ffffff;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    }

    .contact-card h3 {
        font-size: var(--font-title);
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-weight: normal;
        color: #1F3F1D;
        margin-bottom: 30px;
        text-align: center;
    }

    .contact-card .row {
        margin-bottom: 24px;
    }

    .contact-card h4 {
        font-size: 30px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-weight: normal;
        color: #DB261D;
        margin-bottom: 8px;
    }

    .contact-card p,
    .contact-card a {
        display: block;
        font-size: var(--font-text);
        line-height: 1.5;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        color: #1F3F1D;
        text-decoration: none;
        word-break: break-word;
    }

    .contact-card a:hover {
        text-decoration: underline;
    }

    /* 地图卡片：图片与信息等高铺满 */
    .contact-map {
        display: flex;
        flex-direction: column;
    }

    .contact-map a {
        display: block;
        flex: 1;
        min-height: 0;
    }

    .contact-map img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 260px;
        border-radius: 20px;
        object-fit: cover;
    }

    .contact-map p {
        margin-top: 20px;
        text-align: center;
        font-size: 24px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        color: #DB261D;
        line-height: 1.5;
    }

    /* ============ iPad / 平板端 ============ */
    @media (max-width: 1440px) {
        .contact-bar {
            width: 90%;
        }

        .contact-main {
            width: 90%;
            gap: 20px;
        }

        .contact-card {
            padding: 30px;
        }
    }

    /* ============ 手机端：信息与表单上下堆叠 ============ */
    @media (max-width: 768px) {
        .contact-bar {
            width: 90%;
            padding: 20px 0 30px;
        }

        .contact-main {
            flex-direction: column;
            width: 90%;
            gap: 20px;
        }

        .contact-card {
            flex: none;
            width: 100%;
            padding: 24px;
        }

        .contact-card h4 {
            font-size: 24px;
        }

        .contact-map img {
            min-height: 0;
        }

        .contact-map p {
            font-size: 20px;
        }
    }
