
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-header h1 {
            color: #2c3e50;
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .contact-header p {
            color: #7f8c8d;
            font-size: 1.2em;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .contact-info {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            height: fit-content;
        }

        .contact-info h2 {
            color: #2c3e50;
            margin-bottom: 25px;
            border-left: 4px solid #3498db;
            padding-left: 15px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .info-icon {
            margin-right: 15px;
            color: #3498db;
            font-size: 1.2em;
            min-width: 20px;
        }

        .info-content h3 {
            margin: 0 0 5px 0;
            color: #2c3e50;
        }

        .info-content p {
            margin: 0;
            color: #7f8c8d;
        }

        .contact-form-section {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .contact-form-section h2 {
            color: #2c3e50;
            margin-bottom: 25px;
            border-left: 4px solid #3498db;
            padding-left: 15px;
        }

        /* HubSpot表单容器样式 */
        .hubspot-form-container {
            min-height: 500px;
        }
        
        /* 调整HubSpot表单样式以匹配网站主题 */
        .hs-form fieldset {
            max-width: 100% !important;
        }
        
        .hs-form label {
            display: block;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: bold;
        }
        
        .hs-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1em;
            transition: border 0.3s;
            box-sizing: border-box;
            margin-bottom: 15px;
        }
        
        .hs-input:focus {
            border-color: #3498db;
            outline: none;
        }
        
        textarea.hs-input {
            height: 120px;
            resize: vertical;
        }
        
        .hs-button {
            background: #e74c3c !important;
            color: white !important;
            border: none !important;
            padding: 15px 30px !important;
            border-radius: 5px !important;
            font-size: 1.1em !important;
            font-weight: bold !important;
            cursor: pointer !important;
            transition: background 0.3s !important;
            width: 100% !important;
        }
        
        .hs-button:hover {
            background: #c0392b !important;
        }

        .response-time {
            text-align: center;
            margin-top: 15px;
            color: #7f8c8d;
            font-style: italic;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            padding-top: 40px;
            border-top: 1px solid #eaeaea;
        }

        .badge {
            text-align: center;
        }

        .badge-icon {
            font-size: 2em;
            margin-bottom: 10px;
            color: #3498db;
        }

        .badge-text {
            font-size: 0.9em;
            color: #7f8c8d;
        }

        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .trust-badges {
                flex-direction: column;
                gap: 20px;
            }
        }
    