:root {
            --primary-color: #0a3d62;
            --secondary-color: #f9ca24;
            --accent-color: #3c6382;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Helvetica Neue', 'Microsoft YaHei', Arial, sans-serif;
            line-height: 1.8;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar {
            background-color: rgba(10, 61, 98, 0.95);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            padding: 0.8rem 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--secondary-color);
        }
        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color) !important;
            background-color: rgba(255,255,255,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 10rem 0;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .project-card {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .project-card img {
            transition: transform 0.5s ease;
        }
        .project-card:hover img {
            transform: scale(1.05);
        }
        .footer {
            background-color: var(--dark-color);
            color: rgba(255,255,255,0.85);
            padding-top: 4rem;
        }
        .footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .copyright {
            background-color: rgba(0,0,0,0.2);
            padding: 1.5rem 0;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
        }
        .friendlink {
            background-color: #f8f9fa;
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.5rem 1.5rem;
            background: white;
            border-radius: 50px;
            color: var(--primary-color);
            text-decoration: none;
            border: 1px solid #eaeaea;
            transition: var(--transition);
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }
        .contact-info li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            width: 40px;
            height: 40px;
            background: var(--secondary-color);
            color: var(--dark-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: 3px solid var(--primary-color);
        }
        .back-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;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--accent-color);
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
            line-height: 1;
        }
        .stats-label {
            font-size: 1.1rem;
            color: var(--accent-color);
        }
