
        * {
            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;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }

        /* ========== Header & Navigation ========== */
        .ickfu-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

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

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

        .ickfu-menu-toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

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

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

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

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

        .ickfu-nav-menu {
            display: flex;
            gap: 40px;
            align-items: center;
        }

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

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

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

        .ickfu-nav-menu a.ickfu-active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background: #0088cc;
        }

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

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

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

        .ickfu-page-header-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .ickfu-page-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .ickfu-page-subtitle {
            font-size: 18px;
            opacity: 0.95;
            font-weight: 300;
        }

        /* ========== Breadcrumb ========== */
        .ickfu-breadcrumb {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            font-size: 14px;
            color: #666;
        }

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

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

        /* ========== Main Content ========== */
        .ickfu-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== About Intro Section ========== */
        .ickfu-about-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 80px 0;
            border-bottom: 1px solid #eee;
        }

        .ickfu-intro-text h2 {
            font-size: 36px;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.2;
        }

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

        .ickfu-intro-text p:last-child {
            margin-bottom: 0;
        }

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

        /* ========== Stats Section ========== */
        .ickfu-stats-section {
            padding: 80px 0;
            background: #f8f9fa;
            border-bottom: 1px solid #eee;
        }

        .ickfu-stats-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 60px;
            color: #333;
        }

        .ickfu-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .ickfu-stat-item {
            text-align: center;
            padding: 30px;
            background: #fff;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ickfu-stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

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

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

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

        /* ========== Core Values Section ========== */
        .ickfu-values-section {
            padding: 80px 0;
            border-bottom: 1px solid #eee;
        }

        .ickfu-section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 60px;
            color: #333;
        }

        .ickfu-values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .ickfu-value-card {
            padding: 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
            border-radius: 12px;
            border: 1px solid #eee;
            transition: all 0.3s ease;
            text-align: center;
        }

        .ickfu-value-card:hover {
            border-color: #0088cc;
            box-shadow: 0 10px 30px rgba(0, 136, 204, 0.1);
            transform: translateY(-5px);
        }

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

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

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

        /* ========== Timeline Section ========== */
        .ickfu-timeline-section {
            padding: 80px 0;
            border-bottom: 1px solid #eee;
        }

        .ickfu-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .ickfu-timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #0088cc, #ccc);
        }

        .ickfu-timeline-item {
            margin-bottom: 50px;
            padding-left: 120px;
            position: relative;
        }

        .ickfu-timeline-dot {
            position: absolute;
            left: 0;
            top: 5px;
            width: 60px;
            height: 60px;
            background: #fff;
            border: 3px solid #0088cc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #0088cc;
            font-size: 14px;
        }

        .ickfu-timeline-content {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            border-left: 3px solid #0088cc;
        }

        .ickfu-timeline-year {
            font-size: 18px;
            font-weight: 700;
            color: #0088cc;
            margin-bottom: 10px;
        }

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

        /* ========== Team Section ========== */
        .ickfu-team-section {
            padding: 80px 0;
            border-bottom: 1px solid #eee;
        }

        .ickfu-team-intro {
            max-width: 800px;
            margin: 0 auto 60px;
            text-align: center;
            color: #666;
            font-size: 16px;
            line-height: 1.8;
        }

        .ickfu-team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .ickfu-team-member {
            text-align: center;
            padding: 40px;
            background: #f8f9fa;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .ickfu-team-member:hover {
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(-5px);
        }

        .ickfu-team-avatar {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #0088cc, #0066aa);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: #fff;
        }

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

        .ickfu-team-title {
            font-size: 14px;
            color: #0088cc;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .ickfu-team-bio {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* ========== Awards Section ========== */
        .ickfu-awards-section {
            padding: 80px 0;
            border-bottom: 1px solid #eee;
        }

        .ickfu-awards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .ickfu-award-item {
            padding: 40px;
            border: 2px solid #0088cc;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(0, 136, 204, 0.05) 0%, rgba(0, 102, 170, 0.05) 100%);
            transition: all 0.3s ease;
        }

        .ickfu-award-item:hover {
            box-shadow: 0 10px 40px rgba(0, 136, 204, 0.15);
            transform: translateY(-5px);
        }

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

        .ickfu-award-name {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .ickfu-award-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }

        /* ========== Partners Section ========== */
        .ickfu-partners-section {
            padding: 80px 0;
            border-bottom: 1px solid #eee;
            background: #f8f9fa;
        }

        .ickfu-partners-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .ickfu-partner-item {
            padding: 40px;
            background: #fff;
            border-radius: 12px;
            border-left: 4px solid #0088cc;
            transition: all 0.3s ease;
        }

        .ickfu-partner-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(-5px);
        }

        .ickfu-partner-type {
            font-size: 12px;
            color: #0088cc;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .ickfu-partner-name {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 12px;
        }

        .ickfu-partner-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }

        /* ========== CTA Section ========== */
        .ickfu-cta-section {
            padding: 80px 20px;
            text-align: center;
            background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
            color: #fff;
            border-bottom: 1px solid #eee;
        }

        .ickfu-cta-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .ickfu-cta-text {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

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

        .ickfu-btn-primary {
            background: #fff;
            color: #0088cc;
        }

        .ickfu-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .ickfu-btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
        }

        .ickfu-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* ========== Footer ========== */
        .ickfu-footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 60px 20px 40px;
        }

        .ickfu-footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .ickfu-footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
            padding-bottom: 50px;
            border-bottom: 1px solid #333;
        }

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

        .ickfu-footer-column a {
            display: block;
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

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

        .ickfu-footer-brand {
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
        }

        .ickfu-footer-desc {
            font-size: 13px;
            color: #999;
            line-height: 1.7;
        }

        .ickfu-footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #999;
        }

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

            .ickfu-nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: #fff;
                gap: 0;
                display: none;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

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

            .ickfu-nav-menu a {
                padding: 12px 0;
                border-bottom: 1px solid #eee;
                width: 100%;
            }

            .ickfu-nav-menu a:last-child {
                border-bottom: none;
            }

            .ickfu-page-title {
                font-size: 28px;
            }

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

            .ickfu-about-intro {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 50px 0;
            }

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

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

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

            .ickfu-value-card {
                padding: 30px;
            }

            .ickfu-team-grid {
                grid-template-columns: 1fr;
            }

            .ickfu-awards-grid {
                grid-template-columns: 1fr;
            }

            .ickfu-partners-grid {
                grid-template-columns: 1fr;
            }

            .ickfu-footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .ickfu-footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .ickfu-section-title {
                font-size: 24px;
                margin-bottom: 40px;
            }

            .ickfu-cta-title {
                font-size: 24px;
            }

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

            .ickfu-timeline::before {
                left: 15px;
            }

            .ickfu-timeline-dot {
                width: 50px;
                height: 50px;
                font-size: 12px;
            }

            .ickfu-timeline-item {
                padding-left: 90px;
                margin-bottom: 40px;
            }
        }

        @media (max-width: 480px) {
            .ickfu-nav {
                height: 60px;
                padding: 0 15px;
            }

            .ickfu-logo img {
                height: 30px;
            }

            .ickfu-page-header {
                padding: 40px 15px;
            }

            .ickfu-page-title {
                font-size: 22px;
                margin-bottom: 10px;
            }

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

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

            .ickfu-main {
                padding: 0 15px;
            }

            .ickfu-about-intro {
                padding: 40px 0;
            }

            .ickfu-intro-text h2 {
                font-size: 22px;
                margin-bottom: 15px;
            }

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

            .ickfu-stats-section {
                padding: 50px 0;
            }

            .ickfu-stats-title {
                font-size: 24px;
                margin-bottom: 40px;
            }

            .ickfu-stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .ickfu-stat-item {
                padding: 20px;
            }

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

            .ickfu-stat-unit {
                font-size: 16px;
            }

            .ickfu-stat-label {
                font-size: 12px;
            }

            .ickfu-values-section {
                padding: 50px 0;
            }

            .ickfu-values-grid {
                grid-template-columns: 1fr;
            }

            .ickfu-value-card {
                padding: 25px;
            }

            .ickfu-value-icon {
                font-size: 40px;
            }

            .ickfu-value-title {
                font-size: 18px;
            }

            .ickfu-section-title {
                font-size: 20px;
                margin-bottom: 30px;
            }

            .ickfu-timeline-item {
                padding-left: 70px;
                margin-bottom: 30px;
            }

            .ickfu-timeline-dot {
                width: 45px;
                height: 45px;
                font-size: 11px;
                left: 0;
            }

            .ickfu-timeline::before {
                left: 12px;
            }

            .ickfu-cta-section {
                padding: 50px 15px;
            }

            .ickfu-cta-title {
                font-size: 20px;
                margin-bottom: 15px;
            }

            .ickfu-cta-text {
                font-size: 14px;
                margin-bottom: 25px;
            }

            .ickfu-cta-buttons {
                gap: 10px;
            }

            .ickfu-btn {
                padding: 12px 30px;
                font-size: 14px;
            }

            .ickfu-footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 30px;
                padding-bottom: 30px;
            }

            .ickfu-footer {
                padding: 40px 15px 30px;
            }
        }
    