/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础样式 */
.zea8d7body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* 容器 */
.zea8d7container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 头部导航 */
.zea8d7header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zea8d7navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zea8d7logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.zea8d7nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.zea8d7nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.zea8d7nav-link:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.1);
}

.zea8d7mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.zea8d7menu-icon {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

/* 主横幅区域 */
.zea8d7hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.zea8d7hero-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zea8d7hero-content {
    flex: 1;
    text-align: left;
    z-index: 2;
}

.zea8d7hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.zea8d7hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatAnimation 6s ease-in-out infinite;
}

.zea8d7hero-img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.zea8d7hero-title {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.zea8d7hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.zea8d7hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.zea8d7hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.zea8d7highlight-item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.zea8d7hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 按钮样式 */
.zea8d7btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.zea8d7btn-primary {
    background-color: #fff;
    color: #667eea;
}

.zea8d7btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.zea8d7btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.zea8d7btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.zea8d7btn-download {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    margin-top: 1rem;
}

.zea8d7btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* 区域标题 */
.zea8d7section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.zea8d7section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.zea8d7section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.zea8d7section-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 1.5rem auto 0;
    text-align: center;
}

.zea8d7section-intro-light {
    color: rgba(255, 255, 255, 0.95);
}

/* oe下载区域 */
.zea8d7download-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.zea8d7download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.zea8d7download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zea8d7download-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.08);
    display: flex;
    flex-direction: column;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.zea8d7download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.zea8d7download-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.zea8d7download-card:hover::before {
    transform: scaleX(1);
}

.zea8d7download-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.zea8d7download-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.zea8d7download-desc {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: left;
    font-size: 0.95rem;
}

.zea8d7download-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.zea8d7feature-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* 平台优势 */
.zea8d7features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 50%, #e8f0fe 100%);
    position: relative;
}

.zea8d7features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.zea8d7features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zea8d7feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    z-index: 1;
}

.zea8d7feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.zea8d7feature-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
    border-color: transparent;
}

.zea8d7feature-card:hover::after {
    opacity: 0.1;
}

.zea8d7feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
}

.zea8d7feature-card:hover .zea8d7feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.zea8d7feature-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
}

.zea8d7feature-desc {
    color: #666;
    line-height: 1.8;
    text-align: left;
    font-size: 0.95rem;
}

/* 关于我们 */
.zea8d7about-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.zea8d7about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.zea8d7about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.zea8d7about-section .zea8d7section-title {
    color: #fff;
}

.zea8d7about-section .zea8d7about-paragraph {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.zea8d7about-content {
    max-width: 900px;
    margin: 0 auto;
}

.zea8d7about-text {
    text-align: center;
}

.zea8d7about-paragraph {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: left;
}

.zea8d7stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.zea8d7stat-item {
    text-align: center;
}

.zea8d7stat-item {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.zea8d7stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.zea8d7stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zea8d7stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 服务特色 */
.zea8d7services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: #fff;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.zea8d7services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    pointer-events: none;
}

.zea8d7services-section .zea8d7section-title,
.zea8d7services-section .zea8d7section-subtitle {
    color: #fff;
}

.zea8d7services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.zea8d7service-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.zea8d7service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.zea8d7service-item:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.zea8d7service-item:hover::before {
    left: 100%;
}

.zea8d7service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #fff;
}

.zea8d7service-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-align: left;
    font-size: 0.95rem;
}

/* 页脚 */
.zea8d7footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

.zea8d7footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.zea8d7footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.zea8d7footer-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.zea8d7footer-subtitle {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.zea8d7footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.zea8d7footer-links {
    list-style: none;
}

.zea8d7footer-links li {
    margin-bottom: 0.5rem;
}

.zea8d7footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.zea8d7footer-link:hover {
    color: #fff;
}

.zea8d7footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zea8d7copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.zea8d7copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.zea8d7copyright a:hover {
    color: #fff;
}

/* 通用广告容器 */
.zea8d7ad-container {
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

/* 响应式设计 */
/* 平板设备 (1024px以下) */
@media (max-width: 1024px) {
    .zea8d7hero-wrapper {
        gap: 2.5rem;
    }
    
    .zea8d7hero-title {
        font-size: 2.5rem;
    }
    
    .zea8d7hero-subtitle {
        font-size: 1.3rem;
    }
    
    .zea8d7download-grid,
    .zea8d7features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .zea8d7services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 移动设备 (768px以下) */
@media (max-width: 768px) {
    .zea8d7container {
        padding: 0 15px;
    }
    
    .zea8d7nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #667eea;
        display: none;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .zea8d7nav.zea8d7nav-active {
        display: flex;
    }

    .zea8d7nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .zea8d7nav-item {
        width: 100%;
    }

    .zea8d7nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .zea8d7mobile-menu-toggle {
        display: flex;
    }
    
    .zea8d7logo-text {
        font-size: 1.5rem;
    }

    .zea8d7hero-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .zea8d7hero-content {
        text-align: center;
    }

    .zea8d7hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .zea8d7hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .zea8d7hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .zea8d7hero-img {
        max-width: 80%;
        border-radius: 15px;
    }
    
    .zea8d7hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .zea8d7btn {
        width: 100%;
        max-width: 300px;
    }

    .zea8d7hero-highlights {
        flex-direction: column;
        align-items: center;
    }

    .zea8d7highlight-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .zea8d7section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .zea8d7download-desc,
    .zea8d7feature-desc,
    .zea8d7service-desc {
        font-size: 0.9rem;
    }

    .zea8d7section-title {
        font-size: 2rem;
    }

    .zea8d7section-subtitle {
        font-size: 1rem;
    }

    .zea8d7download-grid,
    .zea8d7features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .zea8d7hero {
        padding: 40px 0;
    }

    .zea8d7download-section,
    .zea8d7features-section,
    .zea8d7about-section,
    .zea8d7services-section {
        padding: 50px 0;
    }
    
    .zea8d7download-card,
    .zea8d7feature-card {
        padding: 2rem 1.5rem;
    }
    
    .zea8d7service-item {
        padding: 2rem 1.5rem;
    }
    
    .zea8d7section-header {
        margin-bottom: 2rem;
    }

    .zea8d7stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .zea8d7stat-item {
        padding: 1rem;
    }
    
    .zea8d7stat-number {
        font-size: 2rem;
    }
    
    .zea8d7feature-card:hover {
        transform: translateY(-8px);
    }
    
    .zea8d7download-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .zea8d7service-item:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .zea8d7services-list {
        grid-template-columns: 1fr;
    }

    .zea8d7footer-content {
        grid-template-columns: 1fr;
    }
}

/* 小屏移动设备 (480px以下) */
@media (max-width: 480px) {
    .zea8d7container {
        padding: 0 10px;
    }
    
    .zea8d7logo-text {
        font-size: 1.3rem;
    }
    
    .zea8d7hero-wrapper {
        gap: 1.2rem;
    }
    
    .zea8d7hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }

    .zea8d7hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .zea8d7hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .zea8d7hero-img {
        max-width: 90%;
        border-radius: 12px;
    }
    
    .zea8d7hero {
        padding: 30px 0;
    }

    .zea8d7section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .zea8d7section-subtitle {
        font-size: 0.9rem;
    }
    
    .zea8d7section-intro {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .zea8d7stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .zea8d7stat-item {
        padding: 0.8rem;
    }
    
    .zea8d7stat-number {
        font-size: 1.8rem;
    }
    
    .zea8d7stat-label {
        font-size: 1rem;
    }

    .zea8d7hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem;
    }

    .zea8d7btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .zea8d7download-card,
    .zea8d7feature-card,
    .zea8d7service-item {
        padding: 1.5rem 1rem;
    }
    
    .zea8d7download-title,
    .zea8d7feature-title,
    .zea8d7service-title {
        font-size: 1.1rem;
    }
    
    .zea8d7download-desc,
    .zea8d7feature-desc,
    .zea8d7service-desc {
        font-size: 0.85rem;
    }
    
    .zea8d7download-section,
    .zea8d7features-section,
    .zea8d7about-section,
    .zea8d7services-section {
        padding: 40px 0;
    }
    
    .zea8d7about-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .zea8d7footer-content {
        gap: 1.5rem;
    }
    
    .zea8d7footer-title {
        font-size: 1.1rem;
    }
    
    .zea8d7footer-text {
        font-size: 0.85rem;
    }
}

/* 打印样式 */
@media print {
    .zea8d7header,
    .zea8d7footer,
    .zea8d7hero-buttons,
    .zea8d7btn {
        display: none;
    }

    .zea8d7hero,
    .zea8d7download-section,
    .zea8d7features-section,
    .zea8d7about-section,
    .zea8d7services-section {
        page-break-inside: avoid;
    }
}

