       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-dark: #0B3B5B;
            --primary-blue: #1E3A6F;
            --tech-blue: #2D7EE9;
            --gold: #D4AF37;
            --orange: #F5A623;
            --bg-light: #F5F7FA;
            --text-dark: #333;
            --text-gray: #666;
            --white: #fff;
            --shadow: 0 2px 8px rgba(0,0,0,0.1);
            --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
        }
        
        body {
            font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        
        /* 导航栏 */
        header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--white);
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 600;
        }
        
        .logo svg {
            width: 40px;
            height: 40px;
        }
        
        .logo img {
            width: auto;
            height: 50px;
            filter: brightness(0) invert(1);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 8px;
        }
        
        .nav-menu a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        
        .nav-menu a:hover,
        .nav-menu a.active {
            background: rgba(255,255,255,0.15);
            color: var(--white);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            cursor: pointer;
            padding: 8px;
        }
        
        .mobile-contact {
            display: none;
        }
        
        .mobile-buttons {
            display: none;
        }
        
        /* 页面标题区 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
            padding: 80px 20px;
            text-align: center;
            color: var(--white);
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .page-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .consultation-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .consultation-btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }
        
        .consultation-btn.phone {
            background-color: var(--white);
            color: var(--primary-blue);
        }
        
        .consultation-btn.phone:hover {
            background-color: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .consultation-btn.form {
            background-color: var(--tech-blue);
            color: var(--white);
        }
        
        .consultation-btn.form:hover {
            background-color: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }
        
        /* 主内容区 */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }
        
        /* 联系方式卡片 */
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .contact-info {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
        }
        
        .about-section {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-top: 25px;
        }
        
        .about-content {
            display: flex;
            align-items: flex-start;
            gap: 30px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex-shrink: 0;
            width: 300px;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        .advantages-section {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-top: 25px;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .advantage-item {
            text-align: center;
            padding: 20px;
        }
        
        .advantage-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--tech-blue);
            margin-bottom: 10px;
            opacity: 0.3;
        }
        
        .advantage-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }
        
        .advantage-item p {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }
        
        .section-title {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-weight: 600;
            text-align: center;
        }
        
        .about-section p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 12px;
        }
        
        .about-section p:last-child {
            margin-bottom: 0;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        
        .info-item:last-child {
            border-bottom: none;
        }
        
        .contact-icon {
        }
        
        .info-content {
            flex: 1;
        }
        
        .info-content h3 {
            font-size: 1rem;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }
        
        .info-title {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .info-content p {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin: 0;
        }
        
        .info-content .highlight {
            color: var(--tech-blue);
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .contact-card {
            background: var(--white);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--tech-blue) 0%, var(--primary-blue) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .contact-icon svg {
            width: 35px;
            height: 35px;
            fill: white;
        }
        
        .contact-card h3 {
            font-size: 1.1rem;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }
        
        .contact-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        
        .contact-card .highlight {
            color: var(--tech-blue);
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 8px;
        }
        
        /* 表单和地图区域 */
        .contact-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        /* 联系表单 */
        .form-section {
            background: var(--white);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        .form-section h2 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .form-section h2 svg {
            width: 28px;
            height: 28px;
            fill: var(--tech-blue);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-dark);
            font-weight: 500;
        }
        
        .form-group label span {
            color: var(--orange);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e8ecf1;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--tech-blue);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--orange) 0%, #E8951A 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
        }
        
        /* 地图占位 */
        .map-section {
            background: var(--white);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
        }
        
        .map-section h2 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .map-section h2 svg {
            width: 28px;
            height: 28px;
            fill: var(--tech-blue);
        }
        
        .map-placeholder {
            background: linear-gradient(135deg, #e8ecf1 0%, #f0f2f5 100%);
            border-radius: 12px;
            height: 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            border: 2px dashed #d0d5dd;
        }
        
        .map-placeholder svg {
            width: 60px;
            height: 60px;
            fill: var(--tech-blue);
            margin-bottom: 15px;
            opacity: 0.7;
        }
        
        .map-placeholder p {
            font-size: 1.1rem;
        }
        
        .map-placeholder .address {
            margin-top: 15px;
            font-size: 0.95rem;
            color: var(--text-gray);
            text-align: center;
            padding: 0 20px;
        }
        
        /* 页脚 */
        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #051524 100%);
            color: var(--white);
            padding: 50px 20px 30px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-section h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            line-height: 1.8;
            font-size: 0.95rem;
        }
        
        .footer-section a:hover {
            color: var(--white);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        
        .contact-item svg {
            width: 18px;
            height: 18px;
            fill: var(--gold);
            flex-shrink: 0;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        /* 弹窗 */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-overlay.active {
            display: flex;
        }
        
        .modal {
            background: white;
            border-radius: 12px;
            padding: 40px;
            max-width: 400px;
            text-align: center;
            animation: modalSlide 0.3s ease;
        }
        
        @keyframes modalSlide {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--orange) 0%, #E8951A 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .modal-icon svg {
            width: 35px;
            height: 35px;
            fill: white;
        }
        
        .modal h3 {
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .modal p {
            color: var(--text-gray);
            margin-bottom: 25px;
        }
        
        .modal-close {
            padding: 12px 35px;
            background: var(--tech-blue);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s ease;
        }
        
        .modal-close:hover {
            background: var(--primary-blue);
        }
        
        /* 响应式 */
        @media (max-width: 968px) {
            .contact-main {
                grid-template-columns: 1fr;
            }
            
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--primary-dark);
                flex-direction: column;
                padding: 20px;
                gap: 10px;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-contact {
                display: block;
                margin-top: 15px;
                padding-top: 15px;
                border-top: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .contact-item {
                color: rgba(255, 255, 255, 0.8);
                font-size: 0.85rem;
                margin-bottom: 8px;
            }
            
            .mobile-buttons {
                display: flex;
                gap: 10px;
                margin-top: 15px;
            }
            
            .mobile-btn {
                flex: 1;
                padding: 12px 0;
                text-align: center;
                border-radius: 8px;
                font-weight: 600;
                text-decoration: none;
                transition: all 0.3s ease;
            }
            
            .consult-btn {
                background: var(--primary-blue);
                color: white;
            }
            
            .consult-btn:hover {
                background: var(--primary-dark);
            }
            
            .quote-btn {
                background: var(--gold);
                color: var(--primary-dark);
            }
            
            .quote-btn:hover {
                background: #d4a933;
            }
            
            .mobile-menu-btn {
                display: block;
                font-size: 24px;
            }
            
            .page-header h1 {
                font-size: 1.75rem;
            }
            
            .form-section,
            .map-section {
                padding: 25px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                width: 100%;
                order: -1;
            }
            
            .about-section,
            .advantages-section {
                padding: 20px;
            }
            
            .section-title {
                font-size: 1.1rem;
            }
            
            .advantages-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .advantage-item {
                padding: 15px;
            }
            
            .advantage-number {
                font-size: 2rem;
            }
            
            .advantage-title {
                font-size: 1rem;
            }
            
            .advantage-item p {
                font-size: 0.85rem;
            }
        }