:root {
            --primary-color: #1a56db;
            --secondary-color: #0e9f6e;
            --dark-color: #1f2937;
            --light-color: #f9fafb;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.8;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .navbar-nav .nav-link {
            font-weight: 500;
            padding: 0.5rem 1.2rem;
            transition: var(--transition);
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);
            color: white;
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }
        .hero-section p {
            font-size: 1.25rem;
            opacity: 0.9;
            animation: fadeInUp 1.2s ease;
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--dark-color);
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        .card-hover {
            transition: var(--transition);
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
        }
        .btn-primary-custom {
            background: var(--primary-color);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background: #1e40af;
            transform: scale(1.05);
        }
        .friendlink .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            background: #f1f5f9;
            border-radius: 50px;
            color: #475569;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid #e2e8f0;
        }
        .friendlink .flink:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        footer {
            background: var(--dark-color);
            color: #d1d5db;
            padding-top: 4rem;
        }
        footer a {
            color: #9ca3af;
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: white;
        }
        .img-hover-zoom {
            overflow: hidden;
            border-radius: 10px;
        }
        .img-hover-zoom img {
            transition: transform 0.5s ease;
        }
        .img-hover-zoom:hover img {
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
            .navbar-nav .nav-link { padding: 0.5rem 0; }
        }
