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

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
        line-height: 1.6;
        color: #333;
        background: #fff;
    }

    .dpr0y-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: all 0.3s ease;
    }

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

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

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

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

    .dpr0y-nav-menu {
        display: flex;
        list-style: none;
        gap: 40px;
    }

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

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

    .dpr0y-nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #4285f4;
        transition: width 0.3s ease;
    }

    .dpr0y-nav-menu a:hover::after {
        width: 100%;
    }

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

    .dpr0y-hero-section {
        min-height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .dpr0y-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 1;
    }

    .dpr0y-hero-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .dpr0y-hero-text h1 {
        font-size: 3.5rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .dpr0y-hero-text p {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .dpr0y-hero-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .dpr0y-btn-primary {
        background: #4285f4;
        color: #fff;
        padding: 15px 30px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .dpr0y-btn-primary:hover {
        background: #3367d6;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
    }

    .dpr0y-btn-secondary {
        background: transparent;
        color: #fff;
        padding: 15px 30px;
        border: 2px solid #fff;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .dpr0y-btn-secondary:hover {
        background: #fff;
        color: #4285f4;
        transform: translateY(-2px);
    }

    .dpr0y-hero-visual {
        position: relative;
    }

    .dpr0y-hero-image {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
        transition: transform 0.3s ease;
    }

    .dpr0y-hero-image:hover {
        transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
    }

    .dpr0y-stats-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

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

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

    .dpr0y-stat-item {
        background: #fff;
        padding: 40px 20px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .dpr0y-stat-item:hover {
        transform: translateY(-5px);
    }

    .dpr0y-stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: #4285f4;
        margin-bottom: 10px;
    }

    .dpr0y-stat-label {
        font-size: 1.1rem;
        color: #666;
        font-weight: 500;
    }

    .dpr0y-features-section {
        padding: 100px 0;
        background: #fff;
    }

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

    .dpr0y-section-header {
        text-align: center;
        margin-bottom: 80px;
    }

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

    .dpr0y-section-subtitle {
        font-size: 1.2rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .dpr0y-feature-card {
        background: #fff;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
    }

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

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

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

    .dpr0y-feature-desc {
        color: #666;
        line-height: 1.7;
    }

    .dpr0y-products-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }

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

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

    .dpr0y-product-card {
        background: #fff;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .dpr0y-product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
    }

    .dpr0y-product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    }

    .dpr0y-product-highlight {
        background: #4285f4;
        color: #fff;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
        display: inline-block;
        margin-bottom: 20px;
    }

    .dpr0y-product-name {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
    }

    .dpr0y-product-desc {
        color: #666;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .dpr0y-product-btn {
        background: #4285f4;
        color: #fff;
        padding: 12px 25px;
        border: none;
        border-radius: 25px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .dpr0y-product-btn:hover {
        background: #3367d6;
        transform: translateY(-2px);
    }

    .dpr0y-testimonials-section {
        padding: 100px 0;
        background: #fff;
    }

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

    .dpr0y-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 60px;
    }

    .dpr0y-testimonial-card {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 15px;
        border-left: 4px solid #4285f4;
        transition: all 0.3s ease;
    }

    .dpr0y-testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .dpr0y-testimonial-content {
        font-style: italic;
        color: #555;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .dpr0y-testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .dpr0y-testimonial-avatar {
        font-size: 2rem;
    }

    .dpr0y-testimonial-info h4 {
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }

    .dpr0y-testimonial-info p {
        color: #666;
        font-size: 0.9rem;
    }

    .dpr0y-testimonial-rating {
        margin-left: auto;
        color: #ffc107;
        font-size: 1.2rem;
    }

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

    .dpr0y-cta-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

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

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

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

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

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

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

    .dpr0y-footer-section h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #4285f4;
    }

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

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

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

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

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

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

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

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

        .dpr0y-hero-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .dpr0y-hero-text h1 {
            font-size: 2.5rem;
        }

        .dpr0y-hero-text p {
            font-size: 1.1rem;
        }

        .dpr0y-hero-buttons {
            justify-content: center;
        }

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

        .dpr0y-features-grid,
        .dpr0y-products-grid,
        .dpr0y-testimonials-grid {
            grid-template-columns: 1fr;
        }

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

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

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

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

        .dpr0y-hero-text h1 {
            font-size: 2rem;
        }

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

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

        .dpr0y-feature-card,
        .dpr0y-product-card {
            padding: 30px 20px;
        }
    }
    