
    .cozylil-contact-container {
        max-width: 1200px;
        margin: 20px auto;
        padding: 20px;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        color: #333;
        border-top: 2px solid #fecb2e;
        box-sizing: border-box;
    }
    .contact-header-title {
        text-align: center;
        margin-bottom: 30px;
    }
    .contact-header-title p {
        color: #888;
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-methods-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .method-card {
        flex: 1;
        min-width: 260px; 
        background: #fff;
        padding: 25px 20px;
        border-radius: 12px;
        text-align: center;
        border: 1px solid #eeeeee;
        transition: all 0.3s ease;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 320px; /* 统一卡片高度 */
    }
    
    /* WhatsApp 绿色高亮 */
    .method-card.whatsapp-primary {
        border: 2px solid #25D366; 
    }
    /* Email 蓝色高亮 */
    .method-card.email-primary {
        border: 2px solid #4285F4; 
    }

    .method-icon {
        font-size: 28px;
        margin-bottom: 12px;
        display: block;
    }
    .method-card h4 {
        font-size: 17px;
        margin-bottom: 10px;
        color: #000;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .method-card p {
        font-size: 14px;
        color: #666;
        line-height: 1.5;
        margin: 5px 0;
    }
    .method-card a {
        color: #000;
        text-decoration: none;
        font-weight: bold;
        border-bottom: 2px solid #fecb2e;
    }

    .whatsapp-qr-img {
        max-width: 110px;
        height: auto;
        margin: 15px auto 10px;
        display: block;
        border: 1px solid #f2f2f2;
        padding: 4px;
    }

    @media (max-width: 768px) {
        .contact-methods-grid {
            display: block;
        }
        .method-card {
            width: 100% !important;
            margin-bottom: 15px;
            min-height: auto;
        }
    }
