body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.blue-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/ic_bg.png');
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 0;
}

.content-container {
    flex: 1;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: flex-start;
    padding-left: 262px;
    padding-right: 200px;
    padding-top: 71px;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 60px;
}


.phone-container {
    flex: 0.9;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.phone-image {
    width: 100%;
    height: auto;
    position: relative;
}

/* 右侧内容区 */
.product-info {
    flex: 1.1;
    display: flex;
    width: 100%;
    padding-top: 161px;
    flex-direction: column;
}

.logo-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 27px;
}

.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, Lato;
    color: #FFFFFF;
    line-height: 90px;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
    font-weight: 700;
    font-size: 80px;
    text-align: left;
}

.text-content {
    font-family: Lato, Lato;
    font-weight: 700;
    font-size: 80px;
    line-height: 110px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
}

.tagline {
    margin: 0px 0 91px 0;
    font-family: Lato, Lato;
    font-weight: 400;
    font-size: 40px;
    line-height: 60px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
    color: #FFFFFF;
}

.download-btn {
    background: #FFFFFF;
    border-radius: 20px 20px 20px 20px;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    width: 540px;
    transition: all 0.3s ease;
    font-family: Lato, Lato;
    line-height: 110px;
    text-align: center;
    font-size: 50px;
    font-style: normal;
    text-transform: none;
    justify-content: flex-start;
    font-family: Lato, Lato;
    font-weight: 700;
    color: #05AE56;
}

.download-btn:hover {
    transform: translateY(-3px);
}

.footer {
    width: 100%;
    position: relative;
    padding-right: 160px;
    padding-bottom: 44px;
    min-height: 25px;
    z-index: 3;
    margin-top: 50px;
}

.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: end;
    margin: 0;
    position: relative;
    height: 36px;
    padding-right: 120px;
}

.footer-links .right-links a:first-child::after {
    content: "|";
    margin: 0 30px;
    font-weight: 700;
    font-size: 30px;
    color: #000000;
    line-height: 36px;
}

.footer-links a {
    text-decoration: none;
    font-family: Lato, Lato;
    font-size: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    font-weight: 700;
    color: #000000;
    line-height: 36px;
}

.footer-links a:hover {
    text-decoration: underline;
}


@media (max-width: 1200px) {
    .content-container {
        flex-direction: column;
    }

    .phone-container {
        align-self: center;
    }

    .phone-image {
        margin-right: 0;
        top: 10%;
    }

    .product-info {
        align-items: center;
        text-align: center;
    }

    .download-btn {
        width: 100%;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        height: auto;
    }

    .footer-links span,
    .footer-links .right-links {
        position: static;
        margin: 10px 0;
    }

    .footer-text-bg {
        padding: 30px 0;
    }
}