:root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --accent-color: #20c997;
            --light-bg: #f8f9fa;
            --dark-bg: #212529;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .navbar-brand i {
            color: var(--accent-color);
            margin-right: 8px;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            color: var(--dark-bg) !important;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 110, 253, 0.85), rgba(32, 201, 151, 0.85)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero-section p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: #0b5ed7;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
        }
        .btn-outline-light {
            border-radius: 50px;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-outline-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            border: 1px solid #eee;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.8rem;
        }
        .stats-section {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: white;
            padding: 5rem 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .case-study {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: var(--transition);
            height: 100%;
        }
        .case-study:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .case-study img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        .news-card {
            border-left: 4px solid var(--primary-color);
            padding-left: 1.5rem;
            margin-bottom: 2rem;
            transition: var(--transition);
        }
        .news-card:hover {
            border-left-color: var(--accent-color);
            padding-left: 2rem;
        }
        .contact-info {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 2.5rem;
            height: 100%;
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 1rem;
        }
        footer {
            background: var(--dark-bg);
            color: #ddd;
            padding-top: 4rem;
        }
        .footer-links h5 {
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-color);
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .friendlink {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            padding: 2rem;
            margin-top: 2rem;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            color: #ddd;
            padding: 0.5rem 1.2rem;
            border-radius: 30px;
            margin: 0.5rem;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(255,255,255,0.2);
            color: white;
            border-color: var(--accent-color);
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid #444;
            margin-top: 3rem;
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
            text-align: center;
            color: #999;
            font-size: 0.9rem;
        }
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .scroll-to-top:hover {
            background: var(--accent-color);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 6rem 0 4rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            transition: var(--transition);
            text-decoration: none;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
            color: white;
        }
