﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Noto Sans TC', 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Microsoft JhengHei", "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        html {
            overflow-x: hidden;
            width: 100%;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        section {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }
        
        /* 澶撮儴鏍峰紡 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1000;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }
        
        /* 涓篵ody娣诲姞padding-top锛岄伩鍏嶅唴瀹硅鍥哄畾澶撮儴閬尅 */
        body {
            padding-top: 0;
        }
        
        /* 涓篽ero鍖哄煙娣诲姞margin-top鏉ヨˉ鍋垮浐瀹氬ご閮ㄧ殑楂樺害 */
        .hero {
            margin-top: 140px;
        }
        
        .header-top {
            background-color: #0056a8;
            color: white;
            padding: 10px 0;
            position: relative;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
        
        .header-contact {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .contact-info {
            display: flex;
            gap: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .logo-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo img {
            height: 60px;
        }
        
        .logo-text h1 {
            font-size: 24px;
            color: #0056a8;
            margin-bottom: 5px;
        }
        
        .logo-text p {
            font-size: 14px;
            color: #666;
        }
        
        .years-badge {
            background-color: #0056a8;
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: bold;
        }
        
        /* 姹夊牎鑿滃崟鎸夐挳 */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 32px;
            height: 28px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }
        
        .hamburger-menu:hover {
            background-color: rgba(255, 255, 255, 0.15);
        }
        
        .hamburger-line {
            width: 100%;
            height: 3px;
            background-color: white;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 3px;
        }
        
        .hamburger-menu.active .hamburger-line {
            background-color: white;
        }
        
        .hamburger-menu.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .hamburger-menu.active .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }
        
        .hamburger-menu.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }
        
        /* 绉诲姩绔鑸脊绐?*/
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 1000;
            will-change: opacity;
            backdrop-filter: blur(2px);
        }
        
        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-nav-menu {
            position: absolute;
            right: 0;
            top: 0;
            width: 85%;
            max-width: 320px;
            height: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
            overflow-y: auto;
            will-change: transform;
        }
        
        .mobile-nav-overlay.active .mobile-nav-menu {
            transform: translateX(0);
        }
        
        .mobile-nav-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #f0f7ff;
            border: none;
            font-size: 22px;
            color: #0056a8;
            cursor: pointer;
            padding: 0;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0, 86, 168, 0.15);
        }
        
        .mobile-nav-close:hover {
            background: #0056a8;
            color: white;
            transform: rotate(90deg);
        }
        
        .mobile-nav-header {
            padding: 25px 20px 20px;
            background: linear-gradient(135deg, #0056a8 0%, #004085 100%);
            color: white;
            margin-bottom: 10px;
        }
        
        .mobile-nav-header h3 {
            font-size: 20px;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .mobile-nav-header p {
            font-size: 13px;
            opacity: 0.9;
            margin: 0;
        }
        
        .mobile-nav-list {
            list-style: none;
            padding: 10px 0;
            margin: 0;
            flex: 1;
        }
        
        .mobile-nav-list li {
            margin: 0 15px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 8px;
        }
        
        .mobile-nav-list a {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            color: #333;
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .mobile-nav-list a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: #0056a8;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .mobile-nav-list a:hover,
        .mobile-nav-list a:active {
            background-color: #f0f7ff;
            color: #0056a8;
            padding-left: 28px;
        }
        
        .mobile-nav-list a:hover::before,
        .mobile-nav-list a:active::before {
            transform: scaleY(1);
        }
        
        .mobile-nav-list a i {
            margin-right: 12px;
            font-size: 16px;
            width: 20px;
            text-align: center;
            color: #0056a8;
        }
        
        .mobile-nav-footer {
            padding: 20px;
            background-color: #f8f9fa;
            border-top: 1px solid #e9ecef;
            margin-top: auto;
        }
        
        .mobile-nav-footer p {
            margin: 8px 0;
            font-size: 14px;
            color: #666;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .mobile-nav-footer i {
            color: #0056a8;
        }
        
        .mobile-nav-years {
            font-size: 12px !important;
            color: #999 !important;
            font-weight: 500;
        }
        
        .mobile-nav-menu {
            display: flex;
            flex-direction: column;
        }
        
        nav {
            background-color: #0056a8;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            display: block;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .nav-menu a:hover {
            background-color: #004085;
        }
        
        /* 鑻遍泟鍖哄煙 - Swiper杞挱 */
        .hero {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
        }
        
        .hero-swiper {
            width: 100%;
            height: 100%;
        }
        
        .hero-slide {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .hero-slide-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 0;
        }
        
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 50, 100, 0.7), rgba(0, 30, 70, 0.8));
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero-content h2 {
            font-size: 42px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero-content p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .hero-content .btn-primary {
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Swiper鍒嗛〉鍣ㄦ牱寮?*/
        .hero-swiper .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
            transition: all 0.3s;
        }
        
        .hero-swiper .swiper-pagination-bullet-active {
            width: 30px;
            border-radius: 6px;
            background: #ff6b00;
        }
        
        /* Swiper瀵艰埅鎸夐挳鏍峰紡 */
        .hero-swiper .swiper-button-next,
        .hero-swiper .swiper-button-prev {
            color: white;
            background: rgba(0, 86, 168, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .hero-swiper .swiper-button-next:hover,
        .hero-swiper .swiper-button-prev:hover {
            background: rgba(0, 86, 168, 0.8);
            transform: scale(1.1);
        }
        
        .hero-swiper .swiper-button-next::after,
        .hero-swiper .swiper-button-prev::after {
            font-size: 20px;
        }
        
        .btn-primary {
            background-color: #ff6b00;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 18px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-weight: bold;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        
        .btn-primary:hover {
            background-color: #e05a00;
        }
        
        .btn-primary:active {
            transform: scale(0.98);
        }
        
        /* 鍏充簬鎴戜滑 */
        .about-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title h2 {
            font-size: 32px;
            color: #0056a8;
            margin-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: #ff6b00;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 50px;
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            text-align: center;
        }
        
        .stat-item {
            background-color: white;
            padding: 30px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #0056a8;
            margin-bottom: 10px;
        }
        
        /* 鏈嶅姟椤圭洰 */
        .services {
            background-color: #f0f7ff;
            padding: 80px 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 86, 168, 0.05) 0%, rgba(255, 107, 0, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 1;
            pointer-events: none;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0, 86, 168, 0.2);
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            filter: brightness(0.95);
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1) rotate(2deg);
            filter: brightness(1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: #0056a8;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .service-content ul {
            list-style-position: inside;
            margin-left: 10px;
        }
        
        .service-content li {
            margin-bottom: 8px;
            color: #555;
        }
        
        /* 鎴愬姛妗堜緥 */
        .projects {
            padding: 80px 0;
        }
        
        .project-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            background-color: #e9ecef;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background-color: #0056a8;
            color: white;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .project-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            background-color: white;
        }
        
        .project-img {
            height: 250px;
            overflow: hidden;
        }
        
        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .project-info {
            padding: 20px;
        }
        
        .project-info h3 {
            color: #0056a8;
            margin-bottom: 10px;
        }
        
        /* 椤佃剼 */
        footer {
            background-color: #1a2b42;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .footer-logo h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: white;
        }
        
        .footer-contact h4, .footer-services h4, .footer-newsletter h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #ff6b00;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .footer-services ul {
            list-style: none;
        }
        
        .footer-services li {
            margin-bottom: 10px;
        }
        
        .footer-services a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-services a:hover {
            color: #ff6b00;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a3b52;
            font-size: 14px;
            color: #aaa;
        }
        
        /* 娑堟伅鎻愮ず鏍峰紡 */
        .message-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            max-width: 400px;
        }
        
        .message {
            padding: 15px 20px;
            border-radius: 4px;
            margin-bottom: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: slideIn 0.3s ease-out;
        }
        
        .message.success {
            background-color: #d4edda;
            color: #155724;
            border-left: 4px solid #28a745;
        }
        
        .message.error {
            background-color: #f8d7da;
            color: #721c24;
            border-left: 4px solid #dc3545;
        }
        
        .message i {
            font-size: 20px;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(400px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes slideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(400px);
                opacity: 0;
            }
        }
        
        /* 楂樼骇鍔ㄧ敾鏁堟灉 */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        /* 婊氬姩瑙﹀彂鍔ㄧ敾绫?*/
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .fade-in-left.animated {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .fade-in-right.animated {
            opacity: 1;
            transform: translateX(0);
        }
        
        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .scale-in.animated {
            opacity: 1;
            transform: scale(1);
        }
        
        /* 妗岄潰绔細闅愯棌姹夊牎鑿滃崟鍜岀Щ鍔ㄥ鑸?*/
        @media (min-width: 769px) {
            .hamburger-menu {
                display: none !important;
            }
            
            .mobile-nav-overlay {
                display: none !important;
            }
        }
        
        @media (max-width: 992px) {
            .services-grid, .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            /* 绉诲姩绔數璇濋摼鎺ユ牱寮忎紭鍖?*/
            a[href^="tel:"] {
                color: inherit;
                text-decoration: none;
                cursor: pointer;
                -webkit-tap-highlight-color: rgba(0, 86, 168, 0.2);
                transition: opacity 0.2s;
            }
            
            a[href^="tel:"]:active {
                opacity: 0.7;
            }
            
            /* 鏄剧ず姹夊牎鑿滃崟锛岄殣钘忔闈㈠鑸?*/
            .hamburger-menu {
                display: flex;
            }
            
            nav {
                display: none;
            }
            
            /* 澶撮儴鍝嶅簲寮忓竷灞€浼樺寲 */
            .header-top {
                padding: 12px 0;
            }
            
            /* 姹夊牎鑿滃崟鍦ㄨ摑鑹插尯鍩熷彸涓婅 */
            .hamburger-menu {
                position: absolute;
                top: 26%;
                right: 20px;
                transform: translateY(-50%);
                z-index: 1001;
            }
            
            .header-contact {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .contact-info {
                flex-direction: row;
                gap: 15px;
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .contact-item {
                font-size: 13px;
                justify-content: center;
            }
            
            .contact-item i {
                font-size: 14px;
            }
            
            .contact-item:last-child {
                width: 100%;
                font-size: 12px;
                margin-top: 5px;
            }
            
            /* Logo鍖哄煙浼樺寲 - 灞呬腑甯冨眬 */
            .logo-section {
                position: relative;
                flex-direction: column;
                align-items: center;
                padding: 15px 0;
                gap: 10px;
                text-align: center;
            }
            
            .logo {
                width: 100%;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 10px;
                font-size: 12px;
            }
            
            .logo-text {
                width: 100%;
            }
            
            .logo-text h1 {
                font-size: 15px;
                line-height: 1.3;
                margin-bottom: 6px;
            }
            
            .logo-text p {
                font-size: 10px;
                line-height: 1.4;
            }
            
            .years-badge {
                font-size: 13px;
                padding: 6px 14px;
                white-space: nowrap;
                margin-bottom: 6px;
            }
            
            /* 鍏朵粬鍝嶅簲寮忓竷灞€ */
            .about-content, .services-grid, .projects-grid {
                grid-template-columns: 1fr;
            }
            
            /* Stats鍖哄煙绉诲姩绔紭鍖?*/
            .stats {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 0 10px;
            }
            
            .stat-item {
                padding: 25px 15px;
            }
            
            .stat-number {
                font-size: 32px;
            }
            
            .stat-text {
                font-size: 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .footer-logo,
            .footer-contact,
            .footer-services {
                text-align: center;
            }
            
            .footer-contact p,
            .footer-services ul {
                text-align: center;
            }
            
            .footer-services ul {
                list-style: none;
                padding: 0;
            }
            
            .message-container {
                top: 10px;
                right: 10px;
                left: 10px;
                max-width: none;
            }
            
            .message {
                font-size: 14px;
                padding: 12px 15px;
            }
            
            /* 绉诲姩绔紭鍖?*/
            body {
                overflow-x: hidden;
            }
            
            .hero {
                height: 500px;
                margin-top: 180px;
                width: 100vw;
                max-width: 100%;
                margin-left: 0;
                margin-right: 0;
            }
            
            .hero-swiper {
                width: 100%;
            }
            
            .container {
                padding: 0 15px;
                max-width: 100%;
            }
            
            .hero-content h2 {
                font-size: 28px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            /* 绉诲姩绔殣钘忓鑸寜閽?*/
            .hero-swiper .swiper-button-next,
            .hero-swiper .swiper-button-prev {
                display: none;
            }
            
            .btn-primary {
                padding: 12px 30px;
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            /* 鑱旂郴琛ㄥ崟绉诲姩绔紭鍖?*/
            .contact-grid {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }
            
            .contact-section {
                padding: 40px 0 !important;
            }
            
            .contact-section input,
            .contact-section select,
            .contact-section textarea {
                font-size: 16px !important;
            }
            
            .contact-section h3 {
                font-size: 20px;
            }
            
            .contact-section p {
                font-size: 14px;
            }
        }