
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 150px 0 80px;
            margin-top: 90px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/26.jpg') center/cover no-repeat;
            opacity: 0.2;
        }

        .page-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .page-header p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-section {
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, rgba(198, 10, 39, 0.05) 0%, rgba(230, 57, 70, 0.05) 100%);
            border-radius: 50%;
        }

        .contact-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(198, 10, 39, 0.05) 0%, rgba(230, 57, 70, 0.05) 100%);
            border-radius: 50%;
        }

        .contact-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h3 {
            font-size: 32px;
            margin-bottom: 30px;
            color: var(--dark-color);
        }

        .contact-info p {
            margin-bottom: 30px;
            color: var(--gray-color);
            font-size: 17px;
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--dark-color);
        }

        .contact-text p {
            color: var(--gray-color);
            margin: 0;
        }

        .contact-phone-large {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 20px 30px;
            border-radius: 15px;
            font-weight: bold;
            font-size: 24px;
            box-shadow: 0 10px 30px rgba(198, 10, 39, 0.2);
            transition: var(--transition);
            max-width: 400px;
        }

        .contact-phone-large:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(198, 10, 39, 0.3);
        }

        .contact-phone-large i {
            margin-right: 15px;
            font-size: 30px;
        }

        .qrcode-section {
            flex: 1;
            text-align: center;
            background-color: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: var(--shadow-hover);
        }

        .qrcode-section h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .qrcode-section p {
            color: var(--gray-color);
            margin-bottom: 30px;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }

        .qrcode-image {
            width: 220px;
            height: 220px;
            margin: 0 auto 25px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .qrcode-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* FAQ Section */
        .faq-section {
            background-color: white;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 25px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-hover);
        }

        .faq-question {
            padding: 25px 30px;
            background-color: var(--light-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: #f0f0f0;
        }

        .faq-question h3 {
            font-size: 18px;
            color: var(--dark-color);
            margin: 0;
        }

        .faq-question i {
            color: var(--primary-color);
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item.active .faq-answer {
            padding: 25px 30px;
            max-height: 500px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            text-align: center;
            padding: 80px 0;
        }

        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }

       

        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-content {
                flex-direction: column;
            }
            
            .qrcode-section {
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 85%;
                height: calc(100vh - 90px);
                background-color: white;
                transition: var(--transition);
                box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
                z-index: 999;
                padding: 30px;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 25px 0;
            }
            
            .page-header {
                padding: 130px 0 60px;
            }
            
            .page-header h1 {
                font-size: 36px;
            }
            
            .page-header p {
                font-size: 18px;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 34px;
            }
            
            .contact-phone {
                display: none;
            }
            
            .contact-phone-large {
                font-size: 20px;
                padding: 15px 25px;
            }
            
            .contact-phone-large i {
                font-size: 24px;
            }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 30px;
            }
            
            .page-header p {
                font-size: 16px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }