
    :root {
        --primary-color: #DA4F77;
        --text-main: #333333;
        --text-light: #666666;
        --bg-light: #fbf0f3;
        --border-color: #f6dce4;
    }
    
    .contact-wrapper {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.6;
        color: var(--text-main);
        max-width: 1000px;
        margin: 0 auto;
        padding: 50px 20px;
    }

    /* Header Section */
    .contact-header {
        text-align: center;
        margin-bottom: 50px;
        padding-bottom: 20px;
        border-bottom: 2px solid var(--primary-color);
    }

    .contact-header h1 {
        color: var(--primary-color);
        font-size: 36px;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .contact-header p {
        font-size: 16px;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Contact Cards Section */
    .contact-cards-container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        margin-bottom: 50px; /* 卡片下方留出间距 */
    }

    .contact-card {
        flex: 1;
        min-width: 280px;
        background: var(--bg-light);
        padding: 40px 20px;
        text-align: center;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(218, 79, 119, 0.1);
    }

    .card-icon {
        width: 40px;
        height: 40px;
        fill: var(--primary-color);
        margin-bottom: 20px;
    }

    .contact-card h3 {
        color: #222;
        font-size: 20px;
        margin-bottom: 15px;
        margin-top: 0;
    }

    .contact-card p, .contact-card a {
        font-size: 15px;
        color: var(--text-light);
        text-decoration: none;
        margin: 0;
        transition: color 0.3s ease;
        line-height: 1.8;
    }

    .contact-card a:hover {
        color: var(--primary-color);
    }

    /* 强制全宽的 Google Map Section */
    .breakout-map {
        /* 强制突破父容器宽度的核心代码 */
        width: 100vw !important;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        height: 450px; /* 控制地图高度，让它更横向 */
        background-color: #eee;
        overflow: hidden;
    }

    .breakout-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

    @media (max-width: 768px) {
        .contact-cards-container {
            flex-direction: column;
        }
        .breakout-map {
            height: 350px; /* 手机端稍微矮一点 */
        }
    }
