/* 设计稿布局样式 */
/* 这个文件用于覆盖原有的布局，但保留颜色、字体大小和形状 */

/* 背景样式 */
body {
    background: linear-gradient(180deg, #fff 0%, #D5D9DD 50%, #fff 100%);
}

/* 容器样式改为左右分栏 */
.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 5% 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 头部区域 - 左对齐 */
.header {
    justify-content: flex-start;
    margin-bottom: 16px;
}

/* 主内容区域 - 左右分栏 */
.main-content {
    display:flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    max-width: 100%;
}

/* 文字内容区域 */
.text-content {
    flex: 1 1 50%;
    max-width: 500px;
    margin-right: 20px;
    order: 1;
}

/* 图像内容区域 */
.device-container {
    flex: 1 1 40%;
    margin: 0;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 100%;
    order: 2;
    padding-left: 20px;
}

/* 调整图片大小 */
.device-image {
    max-width: 650px;
    height: auto;
    margin-top: -30px;
}

/* 调整标题为左对齐 */
.logo,
.main-title1,
.tagline {
    text-align: left;
}

/* 调整间距 */
.logo {
    margin-bottom: 16px;
}

/* 主标题和描述文本一行显示 */
.main-title-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    max-width: 100%;
}

.main-title1 {
    order: 1;
    margin-bottom: 0;
    margin-right: 16px;
    display: inline-block;
    flex: 0 0 auto;
}

.tagline {
    order: 2;
    margin-bottom: 0;
    display: inline-block;
    flex: 1 1 auto;
    font-style: normal;
    white-space: nowrap;
    max-width: 600px;
}

/* 底部文字已移除 */

/* 功能标题间距 */
.features-section {
    padding-top: 0;
    margin-top: 80px;
}

/* 响应式设计调整 */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .text-content {
        margin-right: 0;
        margin-bottom: 30px;
        order: 1;
    }

    .device-container {
        order: 2;
        justify-content: center;
        align-items: center;
    }

    .logo,
    .bottom-text {
        text-align: center;
    }

    .main-title-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .main-title1,
    .tagline {
        text-align: center;
        margin-right: 0;
    }

    .cta-section {
        margin: 30px auto;
    }
}