:root {
            --primary-color: #c72e6c;
            --secondary-color: #2a2a5a;
            --accent-color: #f8b500;
            --light-bg: #f9f7fe;
            --dark-text: #333333;
            --light-text: #666666;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --border-radius: 10px;
        }
        body {
            font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; }
        h3 { font-size: 1.8rem; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
        }
        .section-padding {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .section-title .subtitle {
            color: var(--light-text);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: #a62559;
            border-color: #a62559;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            color: white;
        }
        .btn-secondary-custom {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 26px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-secondary-custom:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            padding: 15px 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 600;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 50px;
            transition: var(--transition);
        }
        .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
            background-color: rgba(199, 46, 108, 0.1);
            color: var(--primary-color) !important;
        }
        .navbar-toggler {
            border: none;
            padding: 0;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .hero-section {
            background: linear-gradient(rgba(42, 42, 90, 0.85), rgba(42, 42, 90, 0.9)), url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1794&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        .hero-content h1 {
            color: white;
            margin-bottom: 25px;
            animation: fadeInUp 1s;
        }
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.9;
            animation: fadeInUp 1s 0.2s both;
        }
        .hero-buttons {
            animation: fadeInUp 1s 0.4s both;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .feature-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-bottom: 4px solid transparent;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            border-bottom-color: var(--primary-color);
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(199, 46, 108, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: var(--primary-color);
        }
        .service-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 100%;
            transition: var(--transition);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .service-img {
            height: 220px;
            overflow: hidden;
        }
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .service-card:hover .service-img img {
            transform: scale(1.05);
        }
        .service-content {
            padding: 30px;
        }
        .counter-section {
            background: linear-gradient(to right, var(--secondary-color), #3a3a7a);
            color: white;
            padding: 80px 0;
        }
        .counter-item {
            text-align: center;
        }
        .counter-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--accent-color);
        }
        .counter-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        .team-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .team-card:hover {
            transform: translateY(-10px);
        }
        .team-img {
            height: 280px;
            overflow: hidden;
        }
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .team-card:hover .team-img img {
            transform: scale(1.05);
        }
        .team-info {
            padding: 25px;
            text-align: center;
        }
        .friendlink {
            background-color: var(--light-bg);
            padding: 60px 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 12px 25px;
            margin: 8px;
            border-radius: 50px;
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--secondary-color);
            color: rgba(255, 255, 255, 0.8);
            padding-top: 80px;
        }
        .footer-links h5 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .footer-contact i {
            width: 40px;
            color: var(--accent-color);
        }
        .copyright {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 60px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        @media (max-width: 992px) {
            .section-padding {
                padding-top: 60px;
                padding-bottom: 60px;
            }
            .hero-section {
                padding: 140px 0 100px;
            }
            .counter-number {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 80px;
                text-align: center;
            }
            .section-title:after {
                width: 60px;
            }
            .counter-section {
                padding: 60px 0;
            }
        }
        .bg-light-custom {
            background-color: var(--light-bg);
        }
        .text-primary-custom {
            color: var(--primary-color) !important;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mb-40 {
            margin-bottom: 40px;
        }
        .mt-40 {
            margin-top: 40px;
        }
        .rounded-lg {
            border-radius: var(--border-radius);
        }
