* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}


.app-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Daily Health 部分 */
.daily-health-section {
    background-color: #FFFFFF;
}

.health-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./IM/ic_bg.png');
    background-size: cover;
    z-index: 0;
}

/* pdfkit 部分 */
.pdfkit-section {
    background-color: #DDEDFB;
}

.pdfkit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/icon_bg.png');
    background-size: cover;
    z-index: 0;
}

/* 主内容容器 */
.content-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-left: 90px;
    padding-right: 190px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 60px;
}

.pdfkit-content {
    padding-left: 190px;
    padding-right: 90px;
    gap: 10px;
}

/* 手机容器 */
.phone-container {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
    margin-top: 200px;
    overflow: hidden;
}

.health-phone {
    height: 75%;
    align-items: flex-start;
    margin-top: 50px;
}

.pdfkit-phone {
    flex: 0.9;
    order: 2;
}

.phone-image {
    width: 100%;
    height: auto;
    position: relative;
}

.health-phone .phone-image {
    width: 100%;
    margin-bottom: -30%;
    max-width: 745px;
}

.pdfkit-phone .phone-image {
    width: 95%;
    max-width: 781px;
}

/* 产品信息区域 */
.product-info {
    flex: 1;
    display: flex;
    width: 100%;
    padding-top: 125px;
    flex-direction: column;
}

.pdfkit-info {
    flex: 1.2;
    order: 1;
}

/* Logo 容器 */
.logo-container {
    display: flex;
    margin-bottom: 100px;
}

.health-logo {
    position: absolute;
    top: 80px;
    right: 80px;
    justify-content: flex-end;
}

.header-logo {
    height: 118px;
    width: 118px;
}

.pdfkit-info .header-logo {
    height: 118px;
    width: 118px;
    justify-content: flex-start;
}

/* 标题容器 */
.logo-title-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 39px;
    justify-content: flex-start;
}

.product-info h1 {
    margin: 0;
    font-family: Lato, sans-serif;
    font-size: 80px;
    line-height: 90px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
    margin-top: 180px;
}

.health-title {
    display: flex;
    gap: 10px;
}

.daily-text {
    color: #DC2E4B;
}

.health-text {
    color: #273E50;
}

.pdfkit-info h1 {
    font-size: 100px;
    color: #000000;
    text-align: left;
    line-height: 90px;
    margin-top: 10px;
}

.pdfkit-title-main {
    display: block;
    font-size: 100px;
    line-height: 90px;
}

.pdfkit-title-sub {
    display: block;
    font-size: 60px;
    line-height: 70px;
    margin-top: 10px;
}

/* 文本内容 */
.text-content {
    margin-bottom: 39px;
    font-family: Lato, sans-serif;
    font-weight: 700;
    font-size: 80px;
    color: #000000;
    line-height: 110px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
}

.tagline {
    margin: 39px 0 24px 0;
    justify-content: flex-start;
    line-height: 60px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    font-family: Lato, Lato;
    font-weight: 400;
    font-size: 40px;
    color: #FFFFFF;
}

.health-tagline {
    font-size: 40px;
    margin-bottom: 30px;
    margin: 25px 0 24px 0;
    position: relative;
    z-index: 2;
}


.health-tagline-background {
    position: absolute;
    left: -1708px;
    top: 50%;
    transform: translateY(-50%);
    height: 157px;
    background: #273E50;
    border-radius: 0px;
    z-index: -1;
    width: calc(100% + 1750px);
}

.health-tagline-container {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.disclaimer {
    margin: 5px 0 40px 0;
    max-width: 800px;
    font-weight: 400;
    font-style: italic;
    font-family: Lato, Lato;
    font-size: 20px;
    color: #273E50;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.pdfkit-tagline {
    margin: 0;
    font-size: 40px;
    color: #FE5562;
}


.download-btn {
    border-radius: 20px;
    border: none;
    padding: 0px 30px;
    cursor: pointer;
    font-family: Lato, sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: #FFFFFF;
    line-height: 110px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    transition: all 0.3s ease;
    font-family: Lato, Lato;
}

.download-btn:hover {
    transform: translateY(-3px);
}

.health-btn {
    background: #DC2E4B;
    width: 384px;
}

.pdfkit-btn {
    width: 384px;
    font-weight: 400;
    font-size: 40px;
    line-height: 110px;
    background: #FE5562;
}


.footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 1460px;
    padding-right: 120px;
    padding-bottom: 80px;
    min-height: 25px;
    z-index: 3;
}

.pdfkit-footer {
    padding-left: 190px;
    padding-bottom: 80px;
}

.footer-card {
    width: auto;
    margin: 0;
    position: relative;
}

.footer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 2px;
}

.footer-text-bg {
    position: relative;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin: 0;
    position: relative;
    height: 36px;
    padding-left: 0;
}

.pdfkit-footer .footer-links {
    justify-content: flex-start;
}

.footer-links .right-links a:first-child::after {
    content: "|";
    margin: 0 30px;
    font-weight: 700;
    font-size: 30px;
    color: #000000;
}

.footer-links a {
    text-decoration: none;
    font-family: Lato, sans-serif;
    font-size: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    font-weight: 700;
    color: #000000;
    line-height: 42px;
}

.pdfkit-footer .footer-links a {
    line-height: 36px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 1000px) {
    .content-container {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .pdfkit-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .phone-container {
        margin-bottom: -15%;
        align-self: center;
    }

    .health-phone {
        height: auto;
        margin-top: 100px;
    }

    .health-phone .phone-image {
        margin-top: 0;
    }

    .health-logo {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-bottom: 30px;
    }

    .pdfkit-phone {
        order: 2;
    }

    .phone-image {
        margin-right: 0;
        top: 15%;
    }

    .product-info {
        align-items: center;
        text-align: center;
        padding-top: 80px;
    }

    .pdfkit-info {
        order: 1;
    }

    .product-info h1 {
        font-size: 60px;
        line-height: 70px;
        text-align: center;
    }

    .pdfkit-info h1 {
        font-size: 50px;
        line-height: 60px;
        text-align: center;
    }

    .pdfkit-title-main {
        font-size: 50px;
        line-height: 60px;
    }

    .pdfkit-title-sub {
        font-size: 40px;
        line-height: 50px;
    }

    .text-content {
        font-size: 50px;
        line-height: 70px;
    }

    .tagline {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
    }

    .health-tagline {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    .health-tagline-background {
        width: 100%;
        left: 0;
    }

    .health-tagline-container {
        display: block;
        width: 100%;
    }

    .disclaimer {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        margin: 15px 0 30px 0;
    }

    .pdfkit-tagline {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
    }

    .download-btn {
        font-size: 30px;
        line-height: 70px;
        width: 100%;
        max-width: 300px;
    }

    .pdfkit-btn {
        width: 100%;
        max-width: 300px;
        font-size: 30px;
    }

    .footer {
        padding-left: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .pdfkit-footer {
        padding-left: 20px;
        padding-bottom: 20px;
    }

    .footer-links {
        flex-direction: column;
        height: auto;
        justify-content: center;
    }

    .footer-links .right-links {
        position: static;
        margin: 10px 0;
    }

    .footer-text-bg {
        padding: 30px 0;
    }
}

/* 小屏幕优化 */
@media (max-width: 768px) {
    .product-info h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .pdfkit-info h1 {
        font-size: 35px;
        line-height: 45px;
    }

    .pdfkit-title-main {
        font-size: 35px;
        line-height: 45px;
    }

    .pdfkit-title-sub {
        font-size: 30px;
        line-height: 40px;
    }

    .text-content {
        font-size: 35px;
        line-height: 50px;
    }

    .download-btn {
        font-size: 24px;
        line-height: 50px;
    }

    .health-tagline {
        font-size: 20px;
        line-height: 28px;
    }

    .health-tagline-background {
        height: 100px;
    }

    .disclaimer {
        font-size: 12px;
        line-height: 18px;
    }
}