<style>
    .contact-page {
        font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    }
    
    /* 英雄区域 */
    .hero-section {
        position: relative;
        height: 660px;
        min-height: 660px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url('/img/contact_bg.jpg') center/cover no-repeat;
        color: white;
        overflow: hidden;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%2300d4ff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.4;
        animation: gridMove 20s linear infinite;
    }
    
    @keyframes gridMove {
        0% { transform: translate(0, 0); }
        100% { transform: translate(20px, 20px); }
    }
    
    .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(30, 58, 138, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
        animation: gradientShift 8s ease-in-out infinite alternate;
    }
    
    @keyframes gradientShift {
        0% { opacity: 0.8; }
        100% { opacity: 1; }
    }
    
    .hero-content {
        text-align: center;
        z-index: 2;
        position: relative;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        font-weight: 800;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        letter-spacing: 2px;
        animation: fadeInUp 1s ease-out;
    }
    
    .hero-content p {
        font-size: 1.3rem;
        opacity: 0.9;
        font-weight: 300;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.9);
        animation: fadeInUp 1s ease-out 0.3s both;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .contact-content-wrapper {
        background: white;
        position: relative;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* 通用部分标题样式 */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        color: #1e293b;
        margin-bottom: 1rem;
        font-weight: 800;
        position: relative;
        padding-bottom: 20px;
        display: inline-block;
    }
    
    .section-header h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #0066cc, #3399ff);
        border-radius: 2px;
    }
    
    .section-header.light h2 {
        color: white;
    }
    
    .section-header.light .section-description {
        color: rgba(255, 255, 255, 0.8);
    }
    
    .section-description {
        font-size: 1.1rem;
        color: #64748b;
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* 联系信息区域 */
    .contact-info-section {
        padding: 60px 0;
        background: white;
        position: relative;
    }
    
    .contact-info-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        gap: 40px;
    }
    
    .contact-info-card {
        padding: 40px 35px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        border: 1px solid rgba(30, 58, 138, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .contact-info-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        position: relative;
        z-index: 1;
    }
    
    .contact-info-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .contact-info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(30, 58, 138, 0.15);
        border-color: rgba(30, 58, 138, 0.3);
    }
    
    .contact-info-card:hover::before {
        opacity: 1;
    }
    
    .contact-info-item {
        display: flex;
        align-items: center;
        padding: 20px 0;
        position: relative;
        z-index: 1;
    }
    
    .contact-info-item:not(:last-child) {
        border-bottom: 1px solid rgba(30, 58, 138, 0.1);
        margin-bottom: 20px;
    }
    

    
    .contact-info-right {
        flex: 0 0 500px;
        text-align: center;
    }
    
    .contact-business-image {
        width: 100%;
        max-width: 500px;
        height: 350px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .contact-business-image:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
        .contact-info-content {
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-info-right {
            flex: none;
            width: 100%;
        }
        
        .contact-business-image {
            max-width: 300px;
            height: 280px;
        }
        
        .contact-info-item {
            padding: 15px 0;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            margin-right: 20px;
        }
        
        .contact-info-card {
            padding: 30px 25px;
        }
        
        .contact-icon i {
            font-size: 24px;
        }
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 25px;
        flex-shrink: 0;
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
        position: relative;
        z-index: 1;
    }
    
    .contact-icon::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, #1e3a8a, #2563eb, #3b82f6);
        border-radius: 50%;
        z-index: -1;
        animation: iconRotate 3s linear infinite;
    }
    
    @keyframes iconRotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .contact-icon i {
        color: white;
        font-size: 28px;
        z-index: 2;
        position: relative;
    }
    
    .contact-details h4 {
        font-size: 18px;
        color: #1e293b;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .contact-details p {
        color: #64748b;
        font-size: 16px;
        margin: 0;
        word-break: break-word;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .contact-details a {
        color: #0066cc;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 18px;
        font-weight: 700;
    }
    
    .contact-details a:hover {
        color: #004c99;
        text-decoration: underline;
    }
    
    .contact-form-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.8rem;
        color: #1e293b;
        margin-bottom: 1.5rem;
        font-weight: 700;
        text-align: center;
    }
    
    .info-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .info-card {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 25px;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        border-radius: 15px;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #0066cc, #3399ff);
    }
    
    .info-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 102, 204, 0.15);
        background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #0066cc, #3399ff);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
        flex-shrink: 0;
    }
    
    .info-content h4 {
        margin: 0 0 8px 0;
        color: #1e293b;
        font-weight: 700;
        font-size: 1.2rem;
    }
    
    .info-content p {
        margin: 0;
        color: #64748b;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* 社交媒体链接 */
     .social-media-links {
         margin-top: 0;
         background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
         padding: 40px;
         border-radius: 20px;
         box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
         border: 1px solid #e2e8f0;
     }
     
     .social-media-links h3 {
         font-size: 1.8rem;
         color: #1e293b;
         margin-bottom: 15px;
         font-weight: 700;
     }
     
     .social-media-links p {
         color: #64748b;
         margin-bottom: 25px;
         line-height: 1.6;
     }
     
     .social-icons {
         display: flex;
         gap: 20px;
         flex-wrap: wrap;
     }
     
     .social-icon {
         width: 60px;
         height: 60px;
         background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         color: #0066cc;
         font-size: 1.8rem;
         transition: all 0.3s ease;
         border: 1px solid #e2e8f0;
         text-decoration: none;
     }
     
     .social-icon:hover {
         transform: translateY(-3px);
         background: linear-gradient(135deg, #0066cc, #3399ff);
         color: white;
         box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
     }

    /* 服务优势样式 */
    .service-advantages {
        background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
        color: white;
        padding: 80px 0;
        width: 100%;
        margin: 0;
    }
    
    .service-advantages .section-title {
        color: white;
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 4rem;
        position: relative;
    }
    
    .service-advantages .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #fbbf24, #f59e0b);
        border-radius: 2px;
    }
    
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .advantage-card {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .advantage-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .advantage-icon {
        font-size: 3rem;
        color: #fbbf24;
        margin-bottom: 1rem;
    }
    
    .advantage-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .advantage-card p {
        line-height: 1.6;
        opacity: 0.9;
    }
    
    /* CTA部分样式 */
    .service-cta {
        background: white;
        padding: 80px 0;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e40af;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
        color: #64748b;
        margin-bottom: 2rem;
    }
    
    .cta-features {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #10b981;
        font-weight: 600;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .cta-button {
        display: inline-block;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: white;
        padding: 1rem 2rem;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    }
    
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        text-decoration: none;
        color: white;
    }
    
    /* 联系表单 */
    .contact-form {
        position: relative;
    }
    
    .modern-form {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
        padding: 50px;
        border-radius: 25px;
        border: 1px solid rgba(30, 58, 138, 0.1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
        min-height: 600px;
    }
    
    .modern-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
        animation: formGlow 3s ease-in-out infinite alternate;
    }
    
    @keyframes formGlow {
        0% { box-shadow: 0 0 10px rgba(30, 58, 138, 0.3); }
        100% { box-shadow: 0 0 20px rgba(30, 58, 138, 0.6); }
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #1e293b;
        font-weight: 600;
        font-size: 0.95rem;
    }
    
    .required {
        color: #ef4444;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #e2e8f0;
        border-radius: 15px;
        font-size: 1rem;
        transition: all 0.4s ease;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        box-sizing: border-box;
        position: relative;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.15), 0 8px 25px rgba(30, 58, 138, 0.1);
        background: #ffffff;
        transform: translateY(-2px);
    }
    
    .form-group input:hover,
    .form-group select:hover,
    .form-group textarea:hover {
        border-color: rgba(30, 58, 138, 0.5);
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 180px;
        height: auto;
    }
    
    .submit-btn {
        background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 30%, #2563eb 70%, #3b82f6 100%);
        color: white;
        border: none;
        padding: 18px 45px;
        border-radius: 15px;
        font-size: 1.2rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.5), 0 0 20px rgba(37, 99, 235, 0.3);
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0 auto;
        width: fit-content;
        animation: pulse-glow 2s ease-in-out infinite alternate;
    }
    
    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }
    
    .submit-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 40px rgba(30, 58, 138, 0.6), 0 0 30px rgba(37, 99, 235, 0.5);
        background: linear-gradient(135deg, #1e40af 0%, #2563eb 30%, #3b82f6 70%, #60a5fa 100%);
    }
    
    .submit-btn:hover::before {
        left: 100%;
    }
    
    .submit-btn:active {
        transform: translateY(-1px) scale(1.02);
    }
    
    @keyframes pulse-glow {
        0% {
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.5), 0 0 20px rgba(37, 99, 235, 0.3);
        }
        100% {
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.7), 0 0 25px rgba(37, 99, 235, 0.5);
        }
    }
    
    /* 地图区域 */
    .map-section {
        padding: 80px 0;
        background: #f8fafc;
    }
    
    .map-container {
        display: flex;
        flex-direction: column;
        margin-top: 40px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        background: white;
    }
    
    .map-embed {
        width: 100%;
        height: 450px;
        overflow: hidden;
    }
    
    .map-embed iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .map-info {
        background: white;
        padding: 30px;
        border-top: 1px solid #e2e8f0;
    }
    
    .location-details {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
    }
    
    .location-details div {
        flex: 1;
        min-width: 250px;
    }
    
    .location-details h4 {
        font-size: 18px;
        color: #1e293b;
        margin-bottom: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .location-details h4 i {
        color: #0066cc;
    }
    
    .location-details p {
        margin-bottom: 20px;
        color: #64748b;
        line-height: 1.6;
    }
    
    .location-details ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }
    
    .location-details ul li {
        margin-bottom: 8px;
        color: #64748b;
        position: relative;
        padding-left: 20px;
    }
    
    .location-details ul li::before {
        content: '•';
        color: #0066cc;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.2rem;
    }
    

    
    /* 常见问题 - 现代化设计 */
    .faq-section {
        padding: 60px 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
    }
    
    .faq-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="%2300d4ff" opacity="0.02"><animateTransform attributeName="transform" type="rotate" values="0 50 50;360 50 50" dur="20s" repeatCount="indefinite"/></polygon></svg>');
        pointer-events: none;
    }
    
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
        margin-top: 40px;
    }
    
    .faq-item {
        margin-bottom: 20px;
        border: 1px solid rgba(30, 58, 138, 0.1);
        border-radius: 20px;
        overflow: hidden;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
        transition: all 0.4s ease;
        position: relative;
    }
    
    .faq-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .faq-item:hover {
        box-shadow: 0 15px 40px rgba(30, 58, 138, 0.12);
        transform: translateY(-3px);
        border-color: rgba(30, 58, 138, 0.2);
    }
    
    .faq-item:hover::before {
        opacity: 1;
    }
    
    .faq-question {
        padding: 25px 30px;
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.4s ease;
        position: relative;
    }
    
    .faq-question:hover {
        background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    }
    
    .faq-question h4 {
        margin: 0;
        font-size: 1rem;
        color: #1e293b;
        font-weight: 600;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
        transition: all 0.4s ease;
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
        position: relative;
    }
    
    .faq-toggle::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #1e3a8a, #2563eb, #3b82f6, #1e3a8a);
        border-radius: 50%;
        z-index: -1;
        animation: toggleBorder 2s linear infinite;
        opacity: 0;
    }
    
    @keyframes toggleBorder {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .faq-item.active .faq-toggle {
        transform: rotate(45deg) scale(1.1);
        background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
        color: #0066cc;
        box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    }
    
    .faq-item.active .faq-toggle::before {
        opacity: 1;
    }
    
    .faq-item.active .faq-question {
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    }
    
    .faq-item.active .faq-question h4 {
        color: white;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        background: #ffffff;
    }
    
    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 0;
    }
    
    .faq-answer p {
        padding: 25px 30px;
        margin: 0;
        color: #64748b;
        line-height: 1.8;
        font-size: 1rem;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    }
    
    /* 联系我们CTA - 科技感设计 */
    .contact-cta {
        padding: 80px 0;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        position: relative;
        border-top: 1px solid rgba(30, 58, 138, 0.2);
        overflow: hidden;
    }
    
    .contact-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 30% 40%, rgba(30, 58, 138, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
        animation: ctaGlow 6s ease-in-out infinite alternate;
    }
    
    @keyframes ctaGlow {
        0% { opacity: 0.7; }
        100% { opacity: 1; }
    }
    
    .cta-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #2563eb 50%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        font-weight: 800;
        text-shadow: 0 0 30px rgba(30, 58, 138, 0.3);
        animation: ctaTextGlow 3s ease-in-out infinite alternate;
    }
    
    @keyframes ctaTextGlow {
        0% { filter: drop-shadow(0 0 10px rgba(30, 58, 138, 0.3)); }
        100% { filter: drop-shadow(0 0 20px rgba(30, 58, 138, 0.6)); }
    }
    
    .cta-content p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
    }
    
    .cta-btn {
        padding: 18px 35px;
        border-radius: 15px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }
    
    .cta-btn.primary {
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
        color: white;
        box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
        border: 2px solid transparent;
    }
    
    .cta-btn.secondary {
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
        color: white;
        border: 2px solid rgba(30, 58, 138, 0.8);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    }
    
    .cta-btn:hover::before {
        left: 100%;
    }
    
    .cta-btn.primary:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 40px rgba(30, 58, 138, 0.6);
    }
    
    .cta-btn.secondary:hover {
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(37, 99, 235, 0.4) 100%);
        border-color: #2563eb;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
    }
    
    /* 响应式设计 */
    @media (max-width: 1024px) {
        .container {
            padding: 0 30px;
        }
        
        .contact-grid {
            gap: 60px;
        }
        
        .map-container {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
    }
    
    @media (max-width: 768px) {
        .contact-page {
            padding-top: 70px;
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
        }
        
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }
        
        .section-header h2,
        .cta-content h2 {
            font-size: 2rem;
        }
        
        .form-row {
            grid-template-columns: 1fr;
        }
        
        .modern-form {
            padding: 30px 25px;
        }
        
        .advantages-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
        
        .contact-info-section,
        .map-section,
        .service-advantages,
        .faq-section,
        .contact-cta {
            padding: 80px 0;
        }
        
        .container {
            padding: 0 20px;
        }
    }
    
    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 2rem;
        }
        
        .section-header h2,
        .cta-content h2 {
            font-size: 1.8rem;
        }
        
        .info-card {
            flex-direction: column;
            text-align: center;
            padding: 25px 20px;
        }
        
        .info-card::before {
            width: 100%;
            height: 4px;
            top: 0;
            left: 0;
        }
        
        .advantage-card {
            padding: 30px 20px;
        }
        
        .modern-form {
            padding: 25px 20px;
        }
        
        .map-info {
            padding: 25px 20px;
        }
        
        .contact-info-section,
        .map-section,
        .service-advantages,
        .faq-section,
        .contact-cta {
            padding: 60px 0;
        }
        
        .faq-question h4 {
            font-size: 1rem;
        }
        
        .advantages-grid {
            grid-template-columns: 1fr;
        }
        
        .cta-features {
            flex-direction: column;
            gap: 1rem;
        }
    }
    </style>