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

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

    .pszzj-header {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

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

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

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

    .pszzj-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

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

    .pszzj-nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s;
        position: relative;
    }

    .pszzj-nav-menu a:hover {
        color: #4285f4;
    }

    .pszzj-nav-menu a.active {
        color: #4285f4;
    }

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

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

    .pszzj-page-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 120px 0 80px;
        text-align: center;
    }

    .pszzj-page-header .pszzj-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .pszzj-page-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .pszzj-page-subtitle {
        font-size: 1.3rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .pszzj-features-overview {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .pszzj-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .pszzj-section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
    }

    .pszzj-section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 60px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .pszzj-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
    }

    .pszzj-feature-card {
        background: white;
        padding: 40px 30px;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
        text-align: center;
    }

    .pszzj-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .pszzj-feature-icon {
        font-size: 4rem;
        margin-bottom: 20px;
        display: block;
    }

    .pszzj-feature-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #333;
    }

    .pszzj-feature-desc {
        color: #666;
        line-height: 1.7;
        font-size: 1rem;
    }

    .pszzj-tech-section {
        padding: 80px 0;
        background: white;
    }

    .pszzj-tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    .pszzj-tech-card {
        padding: 30px;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        transition: border-color 0.3s, transform 0.3s;
    }

    .pszzj-tech-card:hover {
        border-color: #4285f4;
        transform: translateY(-5px);
    }

    .pszzj-tech-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #333;
    }

    .pszzj-tech-desc {
        color: #666;
        line-height: 1.7;
    }

    .pszzj-stats-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
        color: white;
        text-align: center;
    }

    .pszzj-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .pszzj-stat-item {
        text-align: center;
    }

    .pszzj-stat-number {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .pszzj-stat-label {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .pszzj-scenarios-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .pszzj-scenarios-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .pszzj-scenario-card {
        background: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s;
    }

    .pszzj-scenario-card:hover {
        transform: translateY(-5px);
    }

    .pszzj-scenario-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        display: block;
    }

    .pszzj-scenario-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #333;
    }

    .pszzj-scenario-desc {
        color: #666;
        line-height: 1.6;
    }

    .pszzj-cta-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        text-align: center;
    }

    .pszzj-cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .pszzj-cta-desc {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.9;
    }

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

    .pszzj-btn {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        border: 2px solid transparent;
    }

    .pszzj-btn-primary {
        background: white;
        color: #4285f4;
    }

    .pszzj-btn-primary:hover {
        background: #f8f9fa;
        transform: translateY(-2px);
    }

    .pszzj-btn-secondary {
        background: transparent;
        color: white;
        border-color: white;
    }

    .pszzj-btn-secondary:hover {
        background: white;
        color: #4285f4;
    }

    .pszzj-footer {
        background: #1a1a1a;
        color: #ccc;
        padding: 60px 0 30px;
    }

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

    .pszzj-footer-section h3 {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 20px;
        font-weight: 600;
    }

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

    .pszzj-footer-section ul li {
        margin-bottom: 10px;
    }

    .pszzj-footer-section ul li a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
    }

    .pszzj-footer-section ul li a:hover {
        color: #4285f4;
    }

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

    .pszzj-footer-brand {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 15px;
    }

    .pszzj-footer-desc {
        line-height: 1.6;
        margin-bottom: 20px;
    }

    @media (max-width: 768px) {
        .pszzj-menu-toggle {
            display: flex;
        }

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

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

        .pszzj-page-title {
            font-size: 2.5rem;
        }

        .pszzj-page-subtitle {
            font-size: 1.1rem;
        }

        .pszzj-section-title {
            font-size: 2rem;
        }

        .pszzj-features-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .pszzj-tech-grid {
            grid-template-columns: 1fr;
        }

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

        .pszzj-stat-number {
            font-size: 2.5rem;
        }

        .pszzj-scenarios-grid {
            grid-template-columns: 1fr;
        }

        .pszzj-cta-title {
            font-size: 2rem;
        }

        .pszzj-cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .pszzj-btn {
            width: 100%;
            max-width: 300px;
        }
    }

    @media (max-width: 480px) {
        .pszzj-page-title {
            font-size: 2rem;
        }

        .pszzj-feature-card {
            padding: 30px 20px;
        }

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

        .pszzj-stat-number {
            font-size: 2rem;
        }
    }
    