:root {
            --primary-blue: #0d6efd;
            --secondary-blue: #0a58ca;
            --accent-orange: #fd7e14;
            --light-gray: #f8f9fa;
            --dark-gray: #212529;
        }
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--dark-gray);
        }
        .hero-section {
            background: linear-gradient(rgba(13, 110, 253, 0.85), rgba(10, 88, 202, 0.9)), url('https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0 80px;
            margin-top: 56px;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary-blue) !important;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background: var(--accent-orange);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        .process-step {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background: var(--light-gray);
            transition: all 0.3s;
            height: 100%;
        }
        .process-step:hover {
            background: var(--primary-blue);
            color: white;
        }
        .process-step:hover .step-number {
            background: white;
            color: var(--primary-blue);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
            transition: all 0.3s;
        }
        .news-card {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            height: 100%;
        }
        .news-card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }
        .news-date {
            background: var(--primary-blue);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
        }
        .contact-info-box {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            border-left: 5px solid var(--primary-blue);
            margin-bottom: 30px;
            transition: transform 0.3s;
        }
        .contact-info-box:hover {
            transform: translateX(10px);
        }
        .contact-icon {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        .footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 60px 0 30px;
        }
        .footer a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .copyright {
            background: #1a252f;
            padding: 20px 0;
            margin-top: 40px;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 8px 20px;
            margin: 5px 10px 5px 0;
            border-radius: 30px;
            transition: all 0.3s;
            color: #bdc3c7;
        }
        .flink:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 400px;
        }
        .btn-primary {
            background: var(--primary-blue);
            border: none;
            padding: 12px 30px;
            font-weight: 500;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background: var(--secondary-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        .stats-label {
            font-size: 1.1rem;
            color: #666;
        }
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            .section-title {
                margin-bottom: 30px;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
