
.user_info {
    display: none;
}

.footer {
    display: none;
}

main {
    width: 100%;
    padding: 0;
    margin: 0;
    background-image: url(/myiq/static/img/start_back.gif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.start_container {
    width: 100%;
    max-width: 1200px;
    padding: 32px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.start_content {
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.start_title {
    font-family: Arial;
    font-weight: bold;
    font-size: 48px;
    color: #000000;
    line-height: 60px;
}

.start_remark {
    font-family: Arial;
    font-weight: 400;
    font-size: 22px;
    color: #667185;
    line-height: 36px;
    margin: 28px 0;
    margin-top: 10px;
}

.feature_list {
    margin-bottom: 48px;
}

.feature_item {
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 14px;
}

@media (hover: hover) and (pointer: fine) {
    .feature_item:hover {
        transform: translateY(-5px);
    }
}

.feature_item img {
    width: 20px;
    height: 20px;
    margin-right: 7px;
    margin-top: 5px;
}

.feature_item p {
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #34495e;
}

.cta_section {
    transition: opacity 0.5s ease-in-out;

}

.cta_button {
    background: #4154F1;
    border-radius: 0px 34px 34px 34px;
    border: 1.5px solid transparent;
    padding: 12px 20px;
    color: #FFFFFF;
    width: 318px;
    height: 64px;
    font-size: 24px;
}

@media (hover: hover) and (pointer: fine) {
    .cta_button:hover {
        background: #ffffff;
        border: 1.5px solid #4154F1;
        color: #4154F1;
    }
}

.cta_remark {
    margin-top: 20px;
    color: #95a5a6;
    font-size: 16px;
}

.feature_item img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.feature_item.visible img {
    opacity: 1;
}

@media (max-width: 768px) {
    main {
        background: #FFFFFF !important;

    }

    .feature_item img {
        width: 3.5vw;
        height: 3.5vw;
        margin-top: 1.2vw;
    }

    .start_container {
        padding: 3vw 8vw;
    }

    .feature_item p {
        text-align: left;
        font-size: 3.5vw;
    }

    .start_content {
        padding: 3.5vw 2.5vw;
    }

    .start_title {
        font-size: 6vw;
        line-height: 8vw;
        width: 100%;
    }

    .start_remark {
        font-size: 3.5vw;
        line-height: 4.5vw;
        margin-top: 2vw;
        margin-bottom: 7vw;
    }

    .feature_list {
        flex-direction: column;
        align-items: center;
    }

    .feature_item {
        width: 100%;
        max-width: none;
        margin-bottom: 3vw;
    }


    .cta_button {
        width: 100%;
        border-radius: 0px 7.5vw 7.5vw 7.5vw;
        padding: 1.5vw 2.5vw;
        font-size: 5vw;
        height: 13vw;
    }


    .cta_remark {
        margin-top: 3vw;
        color: #95a5a6;
        font-size: 4vw;
    }

    .header {
        border-bottom: 1px solid #e0e0e0 ! important;
    }

}