
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }

        /* Header & Navigation */
        .p9kq-header {
            background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .p9kq-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 70px;
        }

        .p9kq-logo img {
            height: 45px;
            width: auto;
        }

        .p9kq-nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .p9kq-nav-menu a {
            color: white;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .p9kq-nav-menu a:hover {
            opacity: 0.8;
        }

        .p9kq-nav-menu a.active {
            border-bottom: 3px solid white;
            padding-bottom: 5px;
        }

        .p9kq-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .p9kq-menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
            transition: 0.3s ease;
        }

        .p9kq-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .p9kq-nav-overlay.active {
            display: block;
        }

        /* Breadcrumb Navigation */
        .p9kq-breadcrumb {
            background: white;
            padding: 15px 20px;
            border-bottom: 1px solid #e0e0e0;
        }

        .p9kq-breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .p9kq-breadcrumb-list {
            display: flex;
            list-style: none;
            gap: 8px;
            font-size: 13px;
        }

        .p9kq-breadcrumb-list li:not(:last-child)::after {
            content: '/';
            margin-left: 8px;
            color: #999;
        }

        .p9kq-breadcrumb-list a {
            color: #0088cc;
            text-decoration: none;
        }

        .p9kq-breadcrumb-list a:hover {
            text-decoration: underline;
        }

        .p9kq-breadcrumb-list li:last-child {
            color: #666;
            font-weight: 500;
        }

        /* Page Header */
        .p9kq-page-header {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            color: white;
            padding: 50px 20px;
            text-align: center;
            border-bottom: 4px solid #ffb81c;
        }

        .p9kq-page-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .p9kq-page-header p {
            font-size: 16px;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content */
        .p9kq-main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }

        /* About Section */
        .p9kq-about-intro {
            background: white;
            padding: 40px;
            border-radius: 8px;
            margin-bottom: 50px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .p9kq-about-intro h2 {
            font-size: 28px;
            color: #0088cc;
            margin-bottom: 20px;
        }

        .p9kq-about-intro p {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        /* Values Grid */
        .p9kq-values-section {
            margin-bottom: 50px;
        }

        .p9kq-values-title {
            text-align: center;
            font-size: 32px;
            color: #0088cc;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .p9kq-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .p9kq-value-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .p9kq-value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 136, 204, 0.15);
        }

        .p9kq-value-icon {
            font-size: 48px;
            margin-bottom: 15px;
            display: block;
        }

        .p9kq-value-card h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .p9kq-value-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* Timeline Section */
        .p9kq-timeline-section {
            margin-bottom: 50px;
        }

        .p9kq-timeline-title {
            text-align: center;
            font-size: 32px;
            color: #0088cc;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .p9kq-timeline {
            position: relative;
            padding: 20px 0;
        }

        .p9kq-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, #0088cc, #ffb81c);
            top: 0;
        }

        .p9kq-timeline-item {
            margin-bottom: 40px;
            position: relative;
        }

        .p9kq-timeline-item:nth-child(odd) .p9kq-timeline-content {
            margin-left: 0;
            margin-right: auto;
            width: calc(50% - 20px);
            text-align: right;
        }

        .p9kq-timeline-item:nth-child(even) .p9kq-timeline-content {
            margin-left: auto;
            margin-right: 0;
            width: calc(50% - 20px);
            text-align: left;
        }

        .p9kq-timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: white;
            border: 4px solid #0088cc;
            border-radius: 50%;
            top: 20px;
            z-index: 1;
        }

        .p9kq-timeline-content {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .p9kq-timeline-year {
            font-size: 20px;
            font-weight: 700;
            color: #0088cc;
            margin-bottom: 8px;
        }

        .p9kq-timeline-event {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* Stats Section */
        .p9kq-stats-section {
            background: linear-gradient(135deg, #0088cc 0%, #005fa3 100%);
            color: white;
            padding: 50px 20px;
            margin: 50px 0;
            border-radius: 8px;
        }

        .p9kq-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .p9kq-stat-card {
            text-align: center;
        }

        .p9kq-stat-number {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .p9kq-stat-unit {
            font-size: 16px;
            opacity: 0.95;
            margin-bottom: 8px;
        }

        .p9kq-stat-label {
            font-size: 13px;
            opacity: 0.85;
            line-height: 1.5;
        }

        /* Awards Section */
        .p9kq-awards-section {
            margin-bottom: 50px;
        }

        .p9kq-awards-title {
            text-align: center;
            font-size: 32px;
            color: #0088cc;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .p9kq-awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .p9kq-award-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #ffb81c;
            transition: transform 0.3s ease;
        }

        .p9kq-award-card:hover {
            transform: translateY(-5px);
        }

        .p9kq-award-year {
            font-size: 14px;
            color: #0088cc;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .p9kq-award-name {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .p9kq-award-desc {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
        }

        /* Partners Section */
        .p9kq-partners-section {
            margin-bottom: 50px;
        }

        .p9kq-partners-title {
            text-align: center;
            font-size: 32px;
            color: #0088cc;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .p9kq-partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .p9kq-partner-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .p9kq-partner-badge {
            display: inline-block;
            background: #e3f2fd;
            color: #0088cc;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .p9kq-partner-name {
            font-size: 18px;
            color: #333;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .p9kq-partner-desc {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
        }

        /* Testimonials Section */
        .p9kq-testimonials-section {
            margin-bottom: 50px;
        }

        .p9kq-testimonials-title {
            text-align: center;
            font-size: 32px;
            color: #0088cc;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .p9kq-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .p9kq-testimonial-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .p9kq-testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .p9kq-testimonial-avatar {
            font-size: 40px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e3f2fd;
            border-radius: 50%;
        }

        .p9kq-testimonial-info h4 {
            font-size: 14px;
            color: #333;
            margin-bottom: 2px;
        }

        .p9kq-testimonial-info p {
            font-size: 12px;
            color: #999;
        }

        .p9kq-testimonial-rating {
            color: #ffb81c;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .p9kq-testimonial-content {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
            font-style: italic;
        }

        /* Footer */
        .p9kq-footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 50px 20px 20px;
            margin-top: 50px;
        }

        .p9kq-footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .p9kq-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .p9kq-footer-column h3 {
            color: white;
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .p9kq-footer-column ul {
            list-style: none;
        }

        .p9kq-footer-column ul li {
            margin-bottom: 10px;
        }

        .p9kq-footer-column a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .p9kq-footer-column a:hover {
            color: #0088cc;
        }

        .p9kq-footer-brand {
            font-size: 18px;
            color: white;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .p9kq-footer-brand-desc {
            font-size: 13px;
            color: #999;
            line-height: 1.6;
        }

        .p9kq-footer-bottom {
            border-top: 1px solid #333;
            padding-top: 30px;
            text-align: center;
            font-size: 13px;
            color: #999;
        }

        .p9kq-footer-bottom-links {
            margin-bottom: 15px;
        }

        .p9kq-footer-bottom-links a {
            color: #999;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .p9kq-footer-bottom-links a:hover {
            color: #0088cc;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .p9kq-menu-toggle {
                display: flex;
            }

            .p9kq-nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
                padding: 20px;
                gap: 15px;
            }

            .p9kq-nav-menu.active {
                display: flex;
            }

            .p9kq-nav-menu a {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .p9kq-page-header h1 {
                font-size: 28px;
            }

            .p9kq-page-header p {
                font-size: 14px;
            }

            .p9kq-about-intro {
                padding: 25px;
            }

            .p9kq-timeline::before {
                left: 30px;
            }

            .p9kq-timeline-item:nth-child(odd) .p9kq-timeline-content,
            .p9kq-timeline-item:nth-child(even) .p9kq-timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
                margin-right: 0 !important;
                text-align: left !important;
            }

            .p9kq-timeline-dot {
                left: 30px;
            }

            .p9kq-values-title,
            .p9kq-timeline-title,
            .p9kq-awards-title,
            .p9kq-partners-title,
            .p9kq-testimonials-title {
                font-size: 24px;
            }

            .p9kq-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .p9kq-footer-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .p9kq-page-header {
                padding: 30px 15px;
            }

            .p9kq-page-header h1 {
                font-size: 22px;
            }

            .p9kq-main {
                padding: 30px 15px;
            }

            .p9kq-about-intro {
                padding: 20px;
            }

            .p9kq-values-grid,
            .p9kq-awards-grid,
            .p9kq-partners-grid,
            .p9kq-testimonials-grid {
                grid-template-columns: 1fr;
            }

            .p9kq-stat-number {
                font-size: 28px;
            }

            .p9kq-timeline-item:nth-child(odd) .p9kq-timeline-content,
            .p9kq-timeline-item:nth-child(even) .p9kq-timeline-content {
                width: calc(100% - 70px);
                margin-left: 70px !important;
            }

            .p9kq-timeline-dot {
                left: 22px;
            }

            .p9kq-nav {
                padding: 0 15px;
            }

            .p9kq-logo img {
                height: 40px;
            }
        }
    