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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #fff;
        }

        /* Header & Navigation */
        .uvq6jx-header {
            background: #fff;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

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

        .uvq6jx-logo {
            flex-shrink: 0;
        }

        .uvq6jx-logo img {
            height: 40px;
            width: auto;
        }

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

        .uvq6jx-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .uvq6jx-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .uvq6jx-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .uvq6jx-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

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

        .uvq6jx-nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .uvq6jx-nav-menu a:hover {
            color: #0088cc;
        }

        .uvq6jx-nav-menu a.active {
            color: #0088cc;
        }

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

        /* Page Header Section */
        .uvq6jx-page-header {
            background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }

        .uvq6jx-page-header-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .uvq6jx-page-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .uvq6jx-page-subtitle {
            font-size: 18px;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Breadcrumb */
        .uvq6jx-breadcrumb {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            gap: 8px;
            font-size: 14px;
            color: #666;
        }

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

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

        /* About Intro Section */
        .uvq6jx-about-intro {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .uvq6jx-about-intro-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #333;
        }

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

        .uvq6jx-about-intro-text ul {
            list-style: none;
            margin: 30px 0;
        }

        .uvq6jx-about-intro-text li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            color: #666;
            font-size: 15px;
        }

        .uvq6jx-about-intro-text li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0088cc;
            font-weight: bold;
            font-size: 18px;
        }

        .uvq6jx-about-intro-image {
            position: relative;
        }

        .uvq6jx-about-intro-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        /* Stats Section */
        .uvq6jx-stats-section {
            background: #f8f9fa;
            padding: 60px 20px;
            margin: 60px 0;
        }

        .uvq6jx-stats-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .uvq6jx-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .uvq6jx-stat-card {
            padding: 30px;
        }

        .uvq6jx-stat-number {
            font-size: 42px;
            font-weight: 700;
            color: #0088cc;
            margin-bottom: 10px;
        }

        .uvq6jx-stat-unit {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .uvq6jx-stat-label {
            font-size: 14px;
            color: #999;
            line-height: 1.6;
        }

        /* Timeline Section */
        .uvq6jx-timeline-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .uvq6jx-timeline-title {
            font-size: 36px;
            text-align: center;
            margin-bottom: 60px;
            color: #333;
        }

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

        .uvq6jx-timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: #e0e0e0;
        }

        .uvq6jx-timeline-item {
            margin-bottom: 50px;
            position: relative;
        }

        .uvq6jx-timeline-item:nth-child(odd) {
            padding-right: calc(50% + 40px);
            text-align: right;
        }

        .uvq6jx-timeline-item:nth-child(even) {
            padding-left: calc(50% + 40px);
            text-align: left;
        }

        .uvq6jx-timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 15px;
            height: 15px;
            background: #0088cc;
            border: 3px solid white;
            border-radius: 50%;
            top: 5px;
            box-shadow: 0 0 0 3px #0088cc;
        }

        .uvq6jx-timeline-content {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

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

        .uvq6jx-timeline-event {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .uvq6jx-timeline-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Values Section */
        .uvq6jx-values-section {
            background: linear-gradient(135deg, #f0f7ff 0%, #f0ffff 100%);
            padding: 80px 20px;
            margin: 80px 0;
        }

        .uvq6jx-values-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .uvq6jx-values-title {
            font-size: 36px;
            text-align: center;
            margin-bottom: 60px;
            color: #333;
        }

        .uvq6jx-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .uvq6jx-value-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .uvq6jx-value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .uvq6jx-value-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: inline-block;
        }

        .uvq6jx-value-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .uvq6jx-value-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Awards Section */
        .uvq6jx-awards-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .uvq6jx-awards-title {
            font-size: 36px;
            text-align: center;
            margin-bottom: 60px;
            color: #333;
        }

        .uvq6jx-awards-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .uvq6jx-award-item {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .uvq6jx-award-item:hover {
            border-color: #0088cc;
            box-shadow: 0 6px 20px rgba(0,136,204,0.15);
        }

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

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

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

        /* Partners Section */
        .uvq6jx-partners-section {
            background: #f8f9fa;
            padding: 80px 20px;
            margin: 80px 0;
        }

        .uvq6jx-partners-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .uvq6jx-partners-title {
            font-size: 36px;
            text-align: center;
            margin-bottom: 60px;
            color: #333;
        }

        .uvq6jx-partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .uvq6jx-partner-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

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

        .uvq6jx-partner-type {
            font-size: 13px;
            color: #0088cc;
            font-weight: 600;
            margin-bottom: 15px;
        }

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

        /* Testimonials Section */
        .uvq6jx-testimonials-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .uvq6jx-testimonials-title {
            font-size: 36px;
            text-align: center;
            margin-bottom: 60px;
            color: #333;
        }

        .uvq6jx-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .uvq6jx-testimonial-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 8px;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .uvq6jx-testimonial-card:hover {
            border-color: #0088cc;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }

        .uvq6jx-testimonial-rating {
            font-size: 14px;
            color: #ffc107;
            margin-bottom: 15px;
        }

        .uvq6jx-testimonial-content {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
            font-style: italic;
        }

        .uvq6jx-testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .uvq6jx-testimonial-avatar {
            font-size: 32px;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f0f0;
            border-radius: 50%;
        }

        .uvq6jx-testimonial-info h4 {
            font-size: 15px;
            color: #333;
            margin-bottom: 3px;
        }

        .uvq6jx-testimonial-info p {
            font-size: 13px;
            color: #999;
        }

        /* CTA Section */
        .uvq6jx-about-cta {
            background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
            margin: 80px 0 0 0;
        }

        .uvq6jx-about-cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .uvq6jx-about-cta-title {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .uvq6jx-about-cta-text {
            font-size: 18px;
            opacity: 0.95;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .uvq6jx-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .uvq6jx-btn {
            padding: 14px 35px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .uvq6jx-btn-primary {
            background: white;
            color: #0088cc;
        }

        .uvq6jx-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .uvq6jx-btn-secondary {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid white;
        }

        .uvq6jx-btn-secondary:hover {
            background: rgba(255,255,255,0.3);
        }

        /* Footer */
        .uvq6jx-footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 20px 20px;
            margin-top: 0;
        }

        .uvq6jx-footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .uvq6jx-footer-section h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
        }

        .uvq6jx-footer-section ul {
            list-style: none;
        }

        .uvq6jx-footer-section li {
            margin-bottom: 12px;
        }

        .uvq6jx-footer-section a {
            color: #bbb;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .uvq6jx-footer-section a:hover {
            color: #0088cc;
        }

        .uvq6jx-footer-bottom {
            border-top: 1px solid #333;
            padding-top: 30px;
            text-align: center;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .uvq6jx-footer-brand {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
        }

        .uvq6jx-footer-copyright {
            font-size: 13px;
            color: #999;
        }

        .uvq6jx-footer-social {
            display: flex;
            gap: 20px;
        }

        .uvq6jx-footer-social a {
            color: #bbb;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .uvq6jx-footer-social a:hover {
            color: #0088cc;
        }

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

            .uvq6jx-nav-menu {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: white;
                padding: 20px;
                gap: 15px;
                z-index: 999;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }

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

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

            .uvq6jx-page-title {
                font-size: 32px;
            }

            .uvq6jx-page-subtitle {
                font-size: 16px;
            }

            .uvq6jx-about-intro {
                grid-template-columns: 1fr;
                gap: 40px;
                margin: 40px auto;
            }

            .uvq6jx-about-intro-text h2 {
                font-size: 28px;
            }

            .uvq6jx-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .uvq6jx-timeline:before {
                left: 10px;
            }

            .uvq6jx-timeline-item:nth-child(odd),
            .uvq6jx-timeline-item:nth-child(even) {
                padding-left: 50px;
                padding-right: 0;
                text-align: left;
            }

            .uvq6jx-timeline-dot {
                left: 0;
            }

            .uvq6jx-values-title,
            .uvq6jx-timeline-title,
            .uvq6jx-awards-title,
            .uvq6jx-partners-title,
            .uvq6jx-testimonials-title {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .uvq6jx-about-cta-title {
                font-size: 28px;
            }

            .uvq6jx-about-cta-text {
                font-size: 16px;
            }

            .uvq6jx-cta-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .uvq6jx-btn {
                width: 100%;
            }

            .uvq6jx-footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .uvq6jx-footer-social {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .uvq6jx-page-header {
                padding: 40px 20px;
            }

            .uvq6jx-page-title {
                font-size: 24px;
            }

            .uvq6jx-page-subtitle {
                font-size: 14px;
            }

            .uvq6jx-breadcrumb {
                padding: 15px;
                font-size: 12px;
            }

            .uvq6jx-about-intro-text h2 {
                font-size: 22px;
            }

            .uvq6jx-about-intro-text p {
                font-size: 14px;
            }

            .uvq6jx-stats-grid {
                grid-template-columns: 1fr;
            }

            .uvq6jx-stat-number {
                font-size: 32px;
            }

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

            .uvq6jx-value-card,
            .uvq6jx-award-item,
            .uvq6jx-partner-card,
            .uvq6jx-testimonial-card {
                padding: 20px;
            }

            .uvq6jx-timeline-content {
                padding: 15px;
            }

            .uvq6jx-about-cta {
                padding: 50px 20px;
            }

            .uvq6jx-about-cta-title {
                font-size: 22px;
            }

            .uvq6jx-about-cta-text {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .uvq6jx-footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
    