:root {
            --primary-color: #003366;
            --secondary-color: #D4AF37;
            --accent-color: #8B0000;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --text-color: #333;
            --transition: all 0.3s ease;
        }
        body {
            font-family: "Helvetica Neue", "Segoe UI", "Microsoft JhengHei", sans-serif;
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 51, 102, 0.9), rgba(0, 51, 102, 0.8)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: -40px auto 20px;
            position: relative;
            z-index: 1;
        }
        .stats-section {
            background: var(--primary-color);
            color: white;
            padding: 80px 0;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--secondary-color);
        }
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        .team-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--light-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        .contact-info {
            background: var(--light-color);
            border-radius: 10px;
            padding: 30px;
            height: 100%;
        }
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .footer {
            background: var(--dark-color);
            color: white;
            padding-top: 60px;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            color: #ddd;
            padding: 8px 15px;
            border-radius: 5px;
            margin: 5px;
            transition: var(--transition);
            text-decoration: none;
        }
        .flink:hover {
            background: var(--secondary-color);
            color: var(--dark-color);
            transform: translateY(-3px);
        }
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            transition: var(--transition);
        }
        .navbar.scrolled {
            padding: 8px 0;
            background: white;
        }
        .nav-link {
            font-weight: 600;
            margin: 0 10px;
            color: var(--primary-color) !important;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--secondary-color) !important;
        }
        .btn-primary-custom {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 5px;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background: var(--accent-color);
            border-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .btn-secondary-custom {
            background: transparent;
            border-color: white;
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 5px;
            transition: var(--transition);
        }
        .btn-secondary-custom:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            border-left: 3px solid var(--secondary-color);
            margin-left: 20px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            height: 100%;
            position: relative;
        }
        .testimonial-card:before {
            content: "\201C";
            font-size: 5rem;
            color: var(--secondary-color);
            opacity: 0.2;
            position: absolute;
            top: -10px;
            left: 20px;
            font-family: serif;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 120px 0 80px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .content-rich {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .content-rich p {
            margin-bottom: 1.5rem;
        }
