
        /* 联系我们内容区域 */
        .contact-hero {
            padding-top: 150px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, var(--deep-navy) 0%, var(--rich-blue) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23ffffff" opacity="0.03"><polygon points="50,0 100,50 50,100 0,50"/></svg>');
            background-size: 200px;
        }

        .contact-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .contact-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        /* 二维码区域 */
        .qrcode-section {
            padding: 100px 0;
            background: var(--light-bg);
            text-align: center;
        }

        .qrcode-container {
            max-width: 600px;
            margin: 0 auto;
            background: var(--white);
            padding: 60px 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .qrcode-container:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .qrcode-title {
            font-size: 2rem;
            color: var(--deep-navy);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .qrcode-subtitle {
            color: var(--text-light);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .qrcode-image {
            width: 220px;
            height: 220px;
            margin: 0 auto 30px;
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 12px;
            padding: 15px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .qrcode-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .qrcode-desc {
            color: var(--text-light);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* 联系方式区域 */
        .contact-methods {
            padding: 100px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 50px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
            z-index: 2;
        }

        .contact-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .contact-card:hover::before {
            transform: scaleX(1);
        }

        .contact-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--deep-navy), var(--rich-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--gold);
            font-size: 2.2rem;
            transition: var(--transition);
        }

        .contact-card:hover .contact-icon {
            background: var(--gold);
            color: var(--deep-navy);
        }

        .contact-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--deep-navy);
            font-weight: 600;
        }

        .contact-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .contact-detail {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--deep-navy);
            margin-bottom: 25px;
        }

        /* 友情链接 */
        .friend-links {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .friend-links .container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .friend-links h4 {
            color: var(--gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .friend-links-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .friend-links-list a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .friend-links-list a:hover {
            color: var(--gold);
        }
 
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }

        @media (max-width: 992px) {
            .container {
                max-width: 960px;
            }
            
            .contact-hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            
            .navbar .container {
                padding: 0 20px;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--deep-navy);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .nav-cta {
                display: none;
            }
            
            .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            .contact-hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .section {
                padding: 70px 0;
            }
            
            .contact-hero {
                padding-top: 120px;
                padding-bottom: 60px;
            }
            
            .contact-hero h1 {
                font-size: 2rem;
            }
            
            .contact-hero p {
                font-size: 1rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .qrcode-container {
                padding: 40px 20px;
            }
        }