/* Feature Section Refactoring */

.screen .feature-section {
    position: absolute;
    /* Keeping absolute for now to match container behavior */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    /* Space between text and image */
    background: transparent;
    /* Ensure no unwanted bg */
}

/* Reverse layout for even sections if needed, or manually applied */
.screen .feature-section.reverse {
    flex-direction: row-reverse;
}

/* Feature Text Content */
.screen .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 10;
    /* Ensure text is above any potential overlap */
}

/* Titles */
.screen .feature-title {
    font-family: "Microsoft YaHei-Bold", Helvetica;
    font-weight: 700;
    color: #161616;
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 16px;
    text-align: left;
    position: relative;
    white-space: nowrap;
}

/* Highlight style (simple underline/color) */
.screen .feature-title .highlight {
    position: relative;
    z-index: 1;
}

/* Be able to add the swoosh image if available later */

.screen .feature-subtitle {
    font-family: "SourceHanSansCN-Regular", Helvetica;
    font-weight: 400;
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: left;
    max-width: 500px;
}

/* Bullet List */
.screen .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.screen .feature-list li {
    font-family: "SourceHanSansCN-Medium", Helvetica;
    font-weight: 500;
    color: #333;
    /* Darker than subtitle */
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Blue Bullet Point */
.screen .feature-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #3496FF;
    /* Blue color from design */
    border-radius: 50%;
    display: inline-block;
}

/* Action Button */
.screen .feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 44px;
    border: 1px solid #4567f1;
    border-radius: 6px;
    /* Smooth corners */
    color: #4567f1;
    font-family: "Microsoft YaHei-Regular", Helvetica;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
    /* Needed for popup */
    cursor: pointer;
}

.screen .feature-btn:hover {
    background-color: #4567f1;
    color: #fff;
}

.screen .feature-btn:hover .contact-popup {
    display: block;
}

/* Image Wrapper */
.screen .feature-image-wrapper {
    flex: 1.2;
    /* Give image slightly more space */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screen .feature-image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Apply gentle drop shadow to match design "floating" feel */
    filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.1));
}