
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #333;
            background-color: #faf9f6;
        }

        /* 导航栏样式（与首页一致） */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(139, 69, 19, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #d4af37;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #d4af37;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* 页面标题 */
        .page-title {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.8), rgba(210, 105, 30, 0.7)),
                        url('https://images.unsplash.com/photo-1577563908411-5077b6dc7624?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 8rem 2rem;
            margin-top: 80px;
        }

        .page-title h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 1.5rem;
            color: #d4af37;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            font-weight: bold;
        }

        .page-title p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
            line-height: 1.7;
        }

        /* 主要内容容器 */
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        /* 特色说明 */
        .contact-intro {
            text-align: center;
            background: white;
            padding: 4rem 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 4rem;
        }

        .contact-intro h2 {
            font-size: clamp(2rem, 3vw, 2.8rem);
            color: #8b4513;
            margin-bottom: 2rem;
            position: relative;
        }

        .contact-intro h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #d4af37, #f4d03f);
            margin: 1rem auto 0;
        }

        .contact-intro p {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, #f5f5dc, #faf0e6);
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid #d4af37;
            margin: 2rem 0;
        }

        .highlight-box .icon {
            font-size: 2rem;
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .highlight-box h3 {
            color: #8b4513;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .highlight-box p {
            color: #666;
            margin-bottom: 0;
            font-size: 1.1rem;
        }

        /* 联系方式网格 */
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin: 4rem 0;
        }

        .contact-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 3px solid transparent;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            border-color: #d4af37;
        }

        .contact-card .platform-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 2.5rem;
            color: white;
            position: relative;
        }

        .wechat-icon {
            background: linear-gradient(45deg, #07c160, #00b050);
        }

        .discord-icon {
            background: linear-gradient(45deg, #5865f2, #404eed);
        }

        .telegram-icon {
            background: linear-gradient(45deg, #0088cc, #229ed9);
        }

        .contact-card h3 {
            font-size: 1.8rem;
            color: #8b4513;
            margin-bottom: 1rem;
        }

        .contact-card p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .contact-details {
            background: #f8f8f8;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
        }

        .contact-details strong {
            color: #8b4513;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .contact-details span {
            color: #555;
            font-family: 'Courier New', monospace;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: inline-block;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #d4af37, #f4d03f);
            color: #8b4513;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            font-size: 1.1rem;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
            background: linear-gradient(45deg, #f4d03f, #d4af37);
        }

        .contact-btn i {
            font-size: 1.2rem;
        }

        /* 咨询表单 */
        .inquiry-form {
            background: linear-gradient(135deg, #8b4513, #d2691e);
            padding: 4rem 3rem;
            border-radius: 20px;
            color: white;
            margin: 4rem 0;
        }

        .inquiry-form h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #d4af37;
            margin-bottom: 1rem;
        }

        .inquiry-form .subtitle {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #d4af37;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 10px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #d4af37;
            background: rgba(255,255,255,0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .submit-btn {
            background: linear-gradient(45deg, #d4af37, #f4d03f);
            color: #8b4513;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
            background: linear-gradient(45deg, #f4d03f, #d4af37);
        }

        .form-note {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 2rem;
            border-left: 4px solid #d4af37;
        }

        .form-note p {
            margin: 0;
            font-size: 1rem;
            opacity: 0.9;
        }

        /* FAQ 部分 */
        .faq-section {
            background: white;
            padding: 4rem 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .faq-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 3rem;
        }

        .faq-item {
            margin-bottom: 2rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 2rem;
        }

        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .faq-question {
            font-size: 1.3rem;
            color: #8b4513;
            font-weight: bold;
            margin-bottom: 1rem;
        cursor: pointer;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .faq-question i {
            color: #d4af37;
            transition: transform 0.3s ease;
        }

        .faq-question.active i {
            transform: rotate(45deg);
        }

        .faq-answer {
            color: #666;
            line-height: 1.7;
            font-size: 1.1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.active {
            max-height: 200px;
        }

        /* Footer */
        .footer {
            background: #2c1810;
            color: white;
            text-align: center;
            padding: 3rem 2rem;
        }

        .footer p {
            font-size: 1rem;
            opacity: 0.8;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(139, 69, 19, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 3rem;
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 1rem 0;
            }

            .mobile-toggle {
                display: block;
            }

            .contact-methods {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-intro,
            .inquiry-form,
            .faq-section {
                padding: 3rem 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-container {
                padding: 4rem 1rem;
            }

            .page-title {
                padding: 6rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .contact-card {
                padding: 2rem 1rem;
            }

            .contact-card .platform-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .inquiry-form,
            .contact-intro,
            .faq-section {
                padding: 2rem 1rem;
            }
        }

        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-card {
            animation: fadeInUp 0.8s ease forwards;
        }

        .contact-card:nth-child(1) { animation-delay: 0.1s; }
        .contact-card:nth-child(2) { animation-delay: 0.2s; }
        .contact-card:nth-child(3) { animation-delay: 0.3s; }

        /* 平滑滚动 */
        html {
            scroll-behavior: smooth;
        }

        .navbar.scrolled {
            background: rgba(139, 69, 19, 0.98);
            padding: 0.5rem 0;
        }
