 /* 联系信息卡片 */
        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(222, 41, 16, 0.1), rgba(222, 41, 16, 0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary-red);
            font-size: 2rem;
        }

        .contact-card h4 {
            font-weight: 600;
            margin-bottom: 15px;
        }

        .contact-card p {
            color: var(--text-light);
            margin-bottom: 0;
        }

        /* 表单样式 */
        .contact-form {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .form-control:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 0.2rem rgba(222, 41, 16, 0.15);
        }

        /* 地图区域 */
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: 0;
        }

        /* FAQ样式 */
        .faq-item {
            border: 1px solid #eee;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            background: #f9f9f9;
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }

        .faq-question:hover {
            background: #f5f5f5;
        }

        .faq-answer {
            padding: 20px 25px;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question {
            background: var(--primary-red);
            color: white;
        }