.st-container-c87e174e {
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 100%;
}
.st-text-container-c87e174e {
    width: 50%;
    position: relative;
}
.st-text-step-c87e174e {
    min-height: 100vh;
    width: 100%;
}
.st-graphic-container-c87e174e {
    width: 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.st-graphic-item-c87e174e {
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(20px);
    width: 80%;
    text-align: center;
}
.st-graphic-item-c87e174e.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* Lead Gen Form Styles */
.st-lead-gen-c87e174e {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.st-lead-form-c87e174e {
    display: flex;
    gap: 10px;
    max-width: 400px;
    width: 100%;
}
.st-lead-input-c87e174e {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
.st-lead-btn-c87e174e {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}
.st-lead-btn-c87e174e:hover {
    opacity: 0.9;
}